]> git.donarmstrong.com Git - mothur.git/blob - formatcolumn.h
sffinfo bug with flow grams right index when clipQualRight=0
[mothur.git] / formatcolumn.h
1 #ifndef FORMATCOLUMN_H
2 #define FORMATCOLUMN_H
3 /*
4  *  formatcolumn.h
5  *  Mothur
6  *
7  *  Created by westcott on 1/13/10.
8  *  Copyright 2010 Schloss Lab. All rights reserved.
9  *
10  */
11
12 #include "formatmatrix.h"
13
14 /******************************************************/
15
16 class FormatColumnMatrix : public FormatMatrix {
17         
18 public:
19         FormatColumnMatrix(string);
20         ~FormatColumnMatrix();
21         int read(NameAssignment*);
22     int read(CountTable*);
23         
24 private:
25         ifstream fileHandle;
26         string filename;
27         
28 };
29
30 /******************************************************/
31
32 #endif
33