X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=parselistscommand.h;h=84abc85d46e0bc3fddd916a0095c4b45aa44dbd1;hp=c765bcdd86c34c89b688685969e89d55928809f6;hb=615301e57c25e241356a9c2380648d117709458d;hpb=aa9238c0a9e6e7aa0ed8b8b606b08ad4fd7dcfe3 diff --git a/parselistscommand.h b/parselistscommand.h index c765bcd..84abc85 100644 --- a/parselistscommand.h +++ b/parselistscommand.h @@ -19,22 +19,34 @@ 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 getOutputPattern(string); + 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: int parse(ListVector*); ListVector* list; GroupMap* groupMap; - InputData* input; + CountTable ct; ofstream out; - string outputDir, listfile, groupfile, label; + string outputDir, listfile, groupfile, label, countfile; set labels; bool abort, allLines; + vector outputNames; map filehandles; map::iterator it3;