X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=parselistscommand.h;h=9356299b91c45c82b073c424a81b9a6bb28673e8;hb=2c97dd48b8e27ee0a6a86c7a082f4c504c3357c6;hp=8f91017fc6af754030a1940fc818e9d83217e33b;hpb=a218321731df14d231bbc08e79906f757cf1540d;p=mothur.git diff --git a/parselistscommand.h b/parselistscommand.h index 8f91017..9356299 100644 --- a/parselistscommand.h +++ b/parselistscommand.h @@ -19,13 +19,22 @@ class ParseListCommand : public Command { public: - ParseListCommand(string); - ~ParseListCommand(); - int execute(); - void help(); + ParseListCommand(string); + ParseListCommand(); + ~ParseListCommand() {} + + vector setParameters(); + string getCommandName() { return "parse.list"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Parse.list"; } + string getDescription() { return "parses a list file by group"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: - void parse(ListVector*); + int parse(ListVector*); ListVector* list; GroupMap* groupMap; @@ -35,6 +44,7 @@ private: string outputDir, listfile, groupfile, label; set labels; bool abort, allLines; + vector outputNames; map filehandles; map::iterator it3;