]> git.donarmstrong.com Git - mothur.git/blob - makegroupcommand.h
Revert to previous commit
[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         string getDescription()         { return "creates a group file"; }
28
29         int execute(); 
30         void help() { m->mothurOut(getHelpString()); }  
31         
32 private:
33                 
34         string fastaFileName, groups, outputDir, filename, output;
35         vector<string> fastaFileNames;
36         vector<string> groupsNames, outputNames;
37         
38         bool abort;
39 };
40
41 #endif
42