]> git.donarmstrong.com Git - mothur.git/blob - makegroupcommand.h
added citation function to commands
[mothur.git] / makegroupcommand.h
1 #ifndef MAKEGROUPCOMMAND_H
2 #define MAKEGROUPCOMMAND_H
3
4 /*
5  *  makegroupcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 5/7/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15 class MakeGroupCommand : public Command {
16         
17 public:
18         MakeGroupCommand(string);
19         MakeGroupCommand();     
20         ~MakeGroupCommand(){}
21         
22         vector<string> setParameters();
23         string getCommandName()                 { return "make.group";  }
24         string getCommandCategory()             { return "General";             }
25         string getHelpString(); 
26         string getCitation() { return "http://www.mothur.org/wiki/Make.group"; }
27         
28         int execute(); 
29         void help() { m->mothurOut(getHelpString()); }  
30         
31 private:
32                 
33         string fastaFileName, groups, outputDir, filename, output;
34         vector<string> fastaFileNames;
35         vector<string> groupsNames, outputNames;
36         
37         bool abort;
38 };
39
40 #endif
41