X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getgroupcommand.h;h=a539834177b63a51929d52299c68779a27046fba;hb=1c898913f53fe4c6574102896b967d9347d1b42a;hp=6750373102c4621d6ed4abf5062f537d55849449;hpb=51cf89e90eef8b300c2786eb1560dd89e6e83445;p=mothur.git diff --git a/getgroupcommand.h b/getgroupcommand.h index 6750373..a539834 100644 --- a/getgroupcommand.h +++ b/getgroupcommand.h @@ -11,19 +11,31 @@ */ #include "command.hpp" -#include "readmatrix.hpp" - -class GlobalData; class GetgroupCommand : public Command { public: + GetgroupCommand(string); GetgroupCommand(); - ~GetgroupCommand(); - int execute(); + ~GetgroupCommand() {} + + vector setParameters(); + string getCommandName() { return "get.group"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Get.group"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: - GlobalData* globaldata; - GroupMap* groupMap; + + string outputFile, sharedfile, outputDir; + vector outputNames; + ofstream out; + ifstream in; + bool abort; + }; #endif