]> git.donarmstrong.com Git - mothur.git/blobdiff - collectcommand.h
added an alignreport option to screen seqs
[mothur.git] / collectcommand.h
index 93b56073dee7955dc60d410347da82b4bf6d2dc2..04dcc602628695c5381048dbb67f4bad8be682e3 100644 (file)
@@ -15,7 +15,7 @@
 #include "groupmap.h"
 #include "collect.h"
 #include "display.h"
-#include "readmatrix.hpp"
+#include "readotu.h"
 #include "validcalculator.h"
 
 /*The collect() command:
@@ -37,19 +37,28 @@ class GlobalData;
 class CollectCommand : public Command {
        
 public:
-       CollectCommand();       
+       CollectCommand(string); 
        ~CollectCommand();
        int execute();  
+       void help();
        
 private:
        GlobalData* globaldata;
-       ReadMatrix* read;
+       ReadOTUFile* read;
        OrderVector* order;
+       OrderVector* lastOrder;
        InputData* input;
        Collect* cCurve;
        ValidCalculators* validCalculator;
        vector<Display*> cDisplays;
-       int freq, abund;
+       int freq, abund, size;
+
+       bool abort, allLines;
+       set<int> lines; //hold lines to be used
+       set<string> labels; //holds labels to be used
+       string line, label, calc;
+       vector<string>  Estimators;
+
 
 };