]> git.donarmstrong.com Git - mothur.git/blobdiff - readcolumn.h
Revert to previous commit
[mothur.git] / readcolumn.h
diff --git a/readcolumn.h b/readcolumn.h
new file mode 100644 (file)
index 0000000..415bef2
--- /dev/null
@@ -0,0 +1,31 @@
+#ifndef READCOLUMN_H
+#define READCOLUMN_H
+/*
+ *  readcolumn.h
+ *  Mothur
+ *
+ *  Created by Sarah Westcott on 4/21/09.
+ *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
+ *
+ */
+
+#include "readmatrix.hpp"
+
+/******************************************************/
+
+class ReadColumnMatrix : public ReadMatrix {
+       
+public:
+       ReadColumnMatrix(string);
+       ReadColumnMatrix(string, bool);
+       ~ReadColumnMatrix();
+       int read(NameAssignment*);
+private:
+       ifstream fileHandle;
+       string distFile;
+       
+};
+
+/******************************************************/
+
+#endif