X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=mergefilecommand.h;h=d7b0aff0f9691622ebc2484776ff1ba5eb5dde35;hp=bd94d77aa6cd8990545953b718c9f6254f44231c;hb=615301e57c25e241356a9c2380648d117709458d;hpb=cd37904452dc95b183ff313ff05720c562902487 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;