]> git.donarmstrong.com Git - mothur.git/blob - makegroupcommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[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         
27         int execute(); 
28         void help() { m->mothurOut(getHelpString()); }  
29         
30 private:
31                 
32         string fastaFileName, groups, outputDir, filename, output;
33         vector<string> fastaFileNames;
34         vector<string> groupsNames, outputNames;
35         
36         bool abort;
37 };
38
39 #endif
40