X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=collectsharedcommand.h;h=a10fd554a2f6e062bdecd37eb7e357d6de5283e6;hb=e150b0b0664caec517485ee6d69dcdade6dcae77;hp=da43adc791ec9809d6ffe1031a9d65e6d77d8db6;hpb=74844a60d80c6dd06e3fb02ee9b928424f9019b0;p=mothur.git diff --git a/collectsharedcommand.h b/collectsharedcommand.h index da43adc..a10fd55 100644 --- a/collectsharedcommand.h +++ b/collectsharedcommand.h @@ -12,45 +12,41 @@ #include "command.hpp" #include "sharedordervector.h" -#include "sharedlistvector.h" #include "inputdata.h" -#include "groupmap.h" #include "collect.h" #include "display.h" -#include "readotu.h" #include "validcalculator.h" #include "sharedutilities.h" -class GlobalData; class CollectSharedCommand : public Command { public: CollectSharedCommand(string); + CollectSharedCommand(); ~CollectSharedCommand(); - int execute(); - void help(); + + vector setParameters(); + string getCommandName() { return "collect.shared"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Collect.shared"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: - GlobalData* globaldata; - SharedUtil* util; - GroupMap* groupmap; - SharedListVector* SharedList; - ReadOTUFile* read; SharedOrderVector* order; InputData* input; - ValidCalculators* validCalculator; Collect* cCurve; vector cDisplays; - int freq; - string format; + float freq; bool abort, allLines, all; set labels; //holds labels to be used - string label, calc, groups, outputDir; + string label, calc, groups, outputDir, sharedfile; vector Estimators, Groups, outputNames; - - }; #endif