X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlistcountcommand.h;h=629e9b98991fa839ccca7a704d582150f47f7d5f;hb=49d2b7459c5027557564b21e9487dadafbbbdc96;hp=e238cf5fc8086f5ec29e6f419f6be0ec2c711e18;hpb=0d714b1c40488d4c2f3a61a5ef861f21522d48b4;p=mothur.git diff --git a/getlistcountcommand.h b/getlistcountcommand.h index e238cf5..629e9b9 100644 --- a/getlistcountcommand.h +++ b/getlistcountcommand.h @@ -12,24 +12,31 @@ #include "command.hpp" #include "inputdata.h" #include "listvector.hpp" -#include "readotu.h" - -class GlobalData; /**********************************************************/ class GetListCountCommand : public Command { public: - GetListCountCommand(string); - ~GetListCountCommand(); - int execute(); - void help(); + GetListCountCommand(string); + GetListCountCommand(); + ~GetListCountCommand(){} + + vector setParameters(); + string getCommandName() { return "get.otulist"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getCitation() { return "http://www.mothur.org/wiki/Get.otulist"; } + string getDescription() { return "lists each OTU number and the sequence contained in that OTU"; } + + string getOutputFileNameTag(string, string); + string getHelpString(); + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: - GlobalData* globaldata; ListVector* list; - ReadOTUFile* read; InputData* input; bool abort, allLines; @@ -37,7 +44,7 @@ private: string label, listfile, outputDir, sort; ofstream out; vector outputNames; - + void process(ListVector*); }; /**********************************************************/