seqin.h
上传用户:hnzyys
上传日期:2007-06-13
资源大小:32k
文件大小:0k
源码类别:

生物技术

开发平台:

Visual C++

  1. #ifndef seqin_h
  2. #define seqin_h seqin_h
  3. #include <fstream>
  4. #include <iostream>
  5. #include <vector>
  6. const long sl=8044;
  7. class singleseq
  8. {
  9. public:
  10. char sseq[sl];
  11. char gi[10];
  12. char dataset[6];
  13. char datasetNum[20];
  14. char info[80];
  15. int length;
  16. };
  17. class seqgroup
  18. {
  19. public:
  20. std::vector<singleseq> seqgrp;
  21. int CountNum;
  22. int input();
  23. };
  24. #endif