]> git.donarmstrong.com Git - mothur.git/blob - readseqs.h
added get.repseqs command, started matrix output command
[mothur.git] / readseqs.h
1 #ifndef READSEQS_H
2 #define READSEQS_H
3
4 /*
5  *  readseqs.h
6  *  Mothur
7  *
8  *  Created by Thomas Ryabin on 5/11/09.
9  *  Copyright 2009Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 using namespace std;
14
15 #include "globaldata.hpp"
16 #include "sequencedb.h"
17 #include "mothur.h"
18
19 /**********************************************************************************/
20
21 class ReadSeqs {
22
23         public:
24                 ReadSeqs(string);
25                 ~ReadSeqs();
26                 virtual void read();
27                 virtual SequenceDB* getDB();            
28         
29         protected:
30                 GlobalData* globaldata;
31                 string seqFile;
32                 ifstream filehandle;
33                 SequenceDB sequencedb;
34                 int readOk; // readOk = 0 means success, readOk = 1 means error(s).             
35 };
36
37 #endif