readInput.h
上传用户:szpanda
上传日期:2016-03-09
资源大小:9k
文件大小:0k
源码类别:

DNA

开发平台:

C/C++

  1. /* File: readInput.h                       */ 
  2. /* Author:Qichan Ma, Student No.:250494898 */
  3. #ifndef READINPUT_H
  4. #define READINPUT_H
  5. /* read the residues, substitution score matrix & gap penalty from the input file */
  6. void readScore();
  7. /* get the number of sequences */
  8. int getNumOfSeq(char *infile);
  9. /* read the sequences from the input file */
  10. void readSeq();
  11. #endif