]> git.donarmstrong.com Git - mothur.git/blobdiff - collectcommand.h
added an alignreport option to screen seqs
[mothur.git] / collectcommand.h
index 8057f9ff78fc1f749a986772f53664ae4e03c75d..04dcc602628695c5381048dbb67f4bad8be682e3 100644 (file)
@@ -37,20 +37,29 @@ class GlobalData;
 class CollectCommand : public Command {
        
 public:
-       CollectCommand();       
+       CollectCommand(string); 
        ~CollectCommand();
        int execute();  
+       void help();
        
 private:
        GlobalData* globaldata;
        ReadOTUFile* read;
        OrderVector* order;
+       OrderVector* lastOrder;
        InputData* input;
        Collect* cCurve;
        ValidCalculators* validCalculator;
        vector<Display*> cDisplays;
        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;
+
+
 };
 
 #endif