]> git.donarmstrong.com Git - mothur.git/blob - readfasta.h
added distance command and filterseqs
[mothur.git] / readfasta.h
1 #ifndef READFASTA_H
2 #define READFASTA_H
3
4 /*
5  *  readfasta.h
6  *  Mothur
7  *
8  *  Created by Thomas Ryabin on 4/21/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 using namespace std;
14
15 #include "readseqs.h"
16 #include "globaldata.hpp"
17 #include "sequencedb.h"
18 #include "mothur.h"
19
20 /**********************************************************************************/
21
22 class ReadFasta : public ReadSeqs {
23
24         public:
25                 ReadFasta(string);
26                 ~ReadFasta();
27                 void read();
28                 SequenceDB* getDB();            
29 };
30
31 #endif