X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlabelcommand.h;h=c5dc1a119969e3ac10b0462c4ad5090bee1333f3;hb=e339f9008daa7d37c9a9034829565620a6abe783;hp=ec0692cac91902901630388ddcd908a22121beb8;hpb=51cf89e90eef8b300c2786eb1560dd89e6e83445;p=mothur.git diff --git a/getlabelcommand.h b/getlabelcommand.h index ec0692c..c5dc1a1 100644 --- a/getlabelcommand.h +++ b/getlabelcommand.h @@ -11,19 +11,32 @@ */ #include "command.hpp" -#include "readmatrix.hpp" +#include "ordervector.hpp" +#include "inputdata.h" -class GlobalData; class GetlabelCommand : public Command { public: + GetlabelCommand(string); GetlabelCommand(); - ~GetlabelCommand(); - int execute(); + ~GetlabelCommand(){} + + vector setParameters(); + string getCommandName() { return "get.label"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Get.label"; } + string getDescription() { return "outputs labels"; } + + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: - GlobalData* globaldata; - string filename; + string inputfile, listfile, rabundfile, sabundfile, format; + bool abort; + vector outputNames; }; -#endif \ No newline at end of file +#endif