X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=makegroupcommand.h;h=b8521d76b1d398dd0cde7419e10750931a7b8fc4;hb=f687723a8357916e86a05116978e6869b039ce36;hp=76435bf2ac7820caa0000098b50fa80a17c6c86e;hpb=17aafaea968f87e581297063b16695ad515bea53;p=mothur.git diff --git a/makegroupcommand.h b/makegroupcommand.h index 76435bf..b8521d7 100644 --- a/makegroupcommand.h +++ b/makegroupcommand.h @@ -15,16 +15,26 @@ class MakeGroupCommand : public Command { public: - MakeGroupCommand(string); - ~MakeGroupCommand(); + MakeGroupCommand(string); + MakeGroupCommand(); + ~MakeGroupCommand(){} + + vector setParameters(); + string getCommandName() { return "make.group"; } + string getCommandCategory() { return "General"; } + string getOutputFileNameTag(string, string); + string getHelpString(); + 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; + string fastaFileName, groups, outputDir, filename, output; vector fastaFileNames; - vector groupsNames; + vector groupsNames, outputNames; bool abort; };