X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlabelcommand.h;fp=getlabelcommand.h;h=3aaa92d515948f9d927f3ff377629f3e376ff62e;hb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;hp=00945e1b362e6e19cf705cf77ee16a15e5a3ccf0;hpb=36a867cbd85d9c276d3c8d13f25a150bbbe2466b;p=mothur.git diff --git a/getlabelcommand.h b/getlabelcommand.h index 00945e1..3aaa92d 100644 --- a/getlabelcommand.h +++ b/getlabelcommand.h @@ -11,28 +11,29 @@ */ #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 getHelpString(); + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: - GlobalData* globaldata; - string filename; + string inputfile, listfile, rabundfile, sabundfile, sharedfile, format; bool abort; vector outputNames; - map > outputTypes; }; #endif