X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=getlabelcommand.h;h=26ec6550b4f6b7fb622b60c1b711fc24c0c4ac40;hp=3e18026f327d1836a8f2d623c10ad1c966a21525;hb=615301e57c25e241356a9c2380648d117709458d;hpb=163b300cfd7d4ca4e70c454be20f07b1d8346650 diff --git a/getlabelcommand.h b/getlabelcommand.h index 3e18026..26ec655 100644 --- a/getlabelcommand.h +++ b/getlabelcommand.h @@ -11,21 +11,33 @@ */ #include "command.hpp" -#include "readmatrix.hpp" +#include "ordervector.hpp" +#include "inputdata.h" -class GlobalData; class GetlabelCommand : public Command { public: GetlabelCommand(string); - ~GetlabelCommand(); - int execute(); - void help(); + GetlabelCommand(); + ~GetlabelCommand(){} + + vector setParameters(); + string getCommandName() { return "get.label"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + string getOutputPattern(string) { return ""; } + 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