]> git.donarmstrong.com Git - mothur.git/blob - mergefilecommand.h
changes while testing
[mothur.git] / mergefilecommand.h
1 #ifndef MERGEFILECOMMAND_H
2 #define MERGEFILECOMMAND_H
3
4 /*
5  *  mergefilecommand.h
6  *  Mothur
7  *
8  *  Created by Pat Schloss on 6/14/09.
9  *  Copyright 2009 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14 #include "command.hpp"
15
16 class MergeFileCommand : public Command {
17 public:
18         MergeFileCommand(string);
19         MergeFileCommand();
20         ~MergeFileCommand(){}
21         
22         vector<string> setParameters();
23         string getCommandName()                 { return "merge.files"; }
24         string getCommandCategory()             { return "General";             }
25         string getHelpString(); 
26     string getOutputPattern(string){ return "";  }      
27         string getCitation() { return "http://www.mothur.org/wiki/Merge.files"; }
28         string getDescription()         { return "appends files creating one file"; }
29
30         
31         int execute(); 
32         void help() { m->mothurOut(getHelpString()); }  
33         
34 private:
35         vector<string> fileNames, outputNames;
36         string outputFileName;
37         int numInputFiles;
38         bool abort;
39 };
40
41 #endif