]> git.donarmstrong.com Git - mothur.git/blob - readnexusal.h
455044aeb24f03e373b0b1621d029c3de30c016c
[mothur.git] / readnexusal.h
1 #ifndef READNEXUSALN_H
2 #define READNEXUSALN_H
3
4 /*
5  *  readnexusaln.h
6  *  Mothur
7  *
8  *  Created by Thomas Ryabin on 4/22/09.
9  *  Copyright 2009 __MyCompanyName__. All rights reserved.
10  *
11  */
12
13 using namespace std;
14
15 #include "globaldata.hpp"
16 #include "sequencedb.h"
17 #include "utilities.hpp"
18
19 /**********************************************************************************/
20
21 class ReadNexus {
22
23         public:
24                 ReadNexus(string);
25                 ~ReadNexus();
26                 void read();            
27         
28         private:
29                 GlobalData* globaldata;
30                 string nexusFile;
31                 ifstream filehandle;
32                 SequenceDB sequencedb;
33                 int readOk; // readOk = 0 means success, readOk = 1 means error(s).
34                 
35                         
36 };
37
38 #endif