]> git.donarmstrong.com Git - mothur.git/blob - readcolumn.h
changing command name classify.shared to classifyrf.shared
[mothur.git] / readcolumn.h
1 #ifndef READCOLUMN_H
2 #define READCOLUMN_H
3 /*
4  *  readcolumn.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 4/21/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "readmatrix.hpp"
13
14 /******************************************************/
15
16 class ReadColumnMatrix : public ReadMatrix {
17         
18 public:
19         ReadColumnMatrix(string);
20         ReadColumnMatrix(string, bool);
21         ~ReadColumnMatrix();
22         int read(NameAssignment*);
23     int read(CountTable*);
24 private:
25         ifstream fileHandle;
26         string distFile;
27         
28 };
29
30 /******************************************************/
31
32 #endif