X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=makegroupcommand.h;h=f86c707d4516160d0dc9cc99243f54bea34d191a;hp=e836d20f50b7b04e6cedefbb4f01616f6380b538;hb=1a20e24ee786195ab0e1cccd4f5aede7a88f3f4e;hpb=794b3f789d6160c99b75edb9cf9af5cf3df4b9da diff --git a/makegroupcommand.h b/makegroupcommand.h index e836d20..f86c707 100644 --- a/makegroupcommand.h +++ b/makegroupcommand.h @@ -17,20 +17,25 @@ class MakeGroupCommand : public Command { public: MakeGroupCommand(string); MakeGroupCommand(); - ~MakeGroupCommand(); - vector getRequiredParameters(); - vector getValidParameters(); - vector getRequiredFiles(); - map > getOutputFiles() { return outputTypes; } + ~MakeGroupCommand(){} + + vector setParameters(); + string getCommandName() { return "make.group"; } + string getCommandCategory() { return "General"; } + + string getHelpString(); + string getOutputPattern(string); + string getCitation() { return "http://www.mothur.org/wiki/Make.group"; } + string getDescription() { return "creates a group file"; } + int execute(); - void help(); + void help() { m->mothurOut(getHelpString()); } private: string fastaFileName, groups, outputDir, filename, output; vector fastaFileNames; vector groupsNames, outputNames; - map > outputTypes; bool abort; };