X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlabelcommand.h;h=7a4d9b5885214696ac38a289f95f8ae20af0c239;hb=f509429e06e545bde69c97cacc0eb436775bd329;hp=3e18026f327d1836a8f2d623c10ad1c966a21525;hpb=163b300cfd7d4ca4e70c454be20f07b1d8346650;p=mothur.git diff --git a/getlabelcommand.h b/getlabelcommand.h index 3e18026..7a4d9b5 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 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; }; #endif