X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlabelcommand.h;h=7a4d9b5885214696ac38a289f95f8ae20af0c239;hb=3cd964b03f04bc569c4a7d0b99be9908c54c1d44;hp=00945e1b362e6e19cf705cf77ee16a15e5a3ccf0;hpb=8bc3e5b38c2317a1715f53be22fa96455868c281;p=mothur.git diff --git a/getlabelcommand.h b/getlabelcommand.h index 00945e1..7a4d9b5 100644 --- a/getlabelcommand.h +++ b/getlabelcommand.h @@ -11,28 +11,33 @@ */ #include "command.hpp" -#include "readmatrix.hpp" +#include "ordervector.hpp" +#include "inputdata.h" -class GlobalData; class GetlabelCommand : public Command { public: GetlabelCommand(string); - GetlabelCommand(){} - ~GetlabelCommand(); - vector getRequiredParameters(); - vector getValidParameters(); - vector getRequiredFiles(); - map > getOutputFiles() { return outputTypes; } - int execute(); - void help(); + GetlabelCommand(); + ~GetlabelCommand(){} + + vector setParameters(); + string getCommandName() { return "get.label"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getOutputFileNameTag(string, string) { return ""; } + 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; - map > outputTypes; }; #endif