X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getgroupcommand.h;h=a3e47e0204e36bfa54970c1d5c0e3ecb9398ab90;hb=36cea83f926066127bf856e7eae1a70ce7e796d0;hp=bc805bdc7ef5363b3c300b4bc980f535704ee0f7;hpb=0470f6d037aacb3563c3f7010708120a4a67d4e6;p=mothur.git diff --git a/getgroupcommand.h b/getgroupcommand.h index bc805bd..a3e47e0 100644 --- a/getgroupcommand.h +++ b/getgroupcommand.h @@ -11,19 +11,29 @@ */ #include "command.hpp" -#include "globaldata.hpp" class GetgroupCommand : public Command { public: GetgroupCommand(string); - ~GetgroupCommand(); - int execute(); - void help(); + GetgroupCommand(); + ~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"; } + string getDescription() { return "outputs group names"; } + + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: - GlobalData* globaldata; - GroupMap* groupMap; - string outputFile, sharedfile; + + string outputFile, sharedfile, outputDir; + vector outputNames; ofstream out; ifstream in; bool abort;