X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mergefilecommand.h;h=d7b0aff0f9691622ebc2484776ff1ba5eb5dde35;hb=70491a12902e89b85cfa6b44a7b7fbe066ee2ac1;hp=bd94d77aa6cd8990545953b718c9f6254f44231c;hpb=cd37904452dc95b183ff313ff05720c562902487;p=mothur.git diff --git a/mergefilecommand.h b/mergefilecommand.h index bd94d77..d7b0aff 100644 --- a/mergefilecommand.h +++ b/mergefilecommand.h @@ -16,12 +16,23 @@ class MergeFileCommand : public Command { public: MergeFileCommand(string); - ~MergeFileCommand(); - int execute(); - void help(); + MergeFileCommand(); + ~MergeFileCommand(){} + + vector setParameters(); + string getCommandName() { return "merge.files"; } + string getCommandCategory() { return "General"; } + string getHelpString(); + string getOutputPattern(string){ return ""; } + string getCitation() { return "http://www.mothur.org/wiki/Merge.files"; } + string getDescription() { return "appends files creating one file"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: - vector fileNames; + vector fileNames, outputNames; string outputFileName; int numInputFiles; bool abort;