seqin.h
资源名称:040103.rar [点击查看]
上传用户:hnzyys
上传日期:2007-06-13
资源大小:32k
文件大小:0k
源码类别:
生物技术
开发平台:
Visual C++
- #ifndef seqin_h
- #define seqin_h seqin_h
- #include <fstream>
- #include <iostream>
- #include <vector>
- const long sl=8044;
- class singleseq
- {
- public:
- char sseq[sl];
- char gi[10];
- char dataset[6];
- char datasetNum[20];
- char info[80];
- int length;
- };
- class seqgroup
- {
- public:
- std::vector<singleseq> seqgrp;
- int CountNum;
- int input();
- };
- #endif