X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=collectcommand.h;h=b099c8a44390ef361019de2e12dff6af71f1dc73;hb=016a30dacbe75869aef5fdb58d2d1bf9eb8f9b33;hp=93b56073dee7955dc60d410347da82b4bf6d2dc2;hpb=bfbc55964f1977da72c2cea984288a427d370a59;p=mothur.git diff --git a/collectcommand.h b/collectcommand.h index 93b5607..b099c8a 100644 --- a/collectcommand.h +++ b/collectcommand.h @@ -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,27 @@ class GlobalData; class CollectCommand : public Command { public: - CollectCommand(); + CollectCommand(string); ~CollectCommand(); int execute(); + void help(); private: GlobalData* globaldata; - ReadMatrix* read; + ReadOTUFile* read; OrderVector* order; InputData* input; Collect* cCurve; ValidCalculators* validCalculator; vector cDisplays; - int freq, abund; + int freq, abund, size; + + bool abort, allLines; + set lines; //hold lines to be used + set labels; //holds labels to be used + string line, label, calc; + vector Estimators; + };