]> git.donarmstrong.com Git - mothur.git/blob - getgroupcommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / getgroupcommand.h
1 #ifndef GETGROUPCOMMAND_H
2 #define GETGROUPCOMMAND_H
3
4 /*
5  *  getgroupcommand.h
6  *  Mothur
7  *
8  *  Created by Thomas Ryabin on 2/2/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15 class GetgroupCommand : public Command {
16 public:
17         GetgroupCommand(string);
18         GetgroupCommand();
19         ~GetgroupCommand() {}
20         
21         vector<string> setParameters();
22         string getCommandName()                 { return "get.group";                           }
23         string getCommandCategory()             { return "OTU-Based Approaches";        }
24         string getHelpString(); 
25         
26         int execute(); 
27         void help() { m->mothurOut(getHelpString()); }  
28         
29         
30 private:
31         
32         string outputFile, sharedfile, outputDir;
33         vector<string> outputNames;
34         ofstream out;
35         ifstream in;
36         bool abort;
37
38 };
39
40 #endif