]> git.donarmstrong.com Git - mothur.git/blob - getgroupcommand.h
a539834177b63a51929d52299c68779a27046fba
[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         string getCitation() { return "http://www.mothur.org/wiki/Get.group"; }
26         
27         int execute(); 
28         void help() { m->mothurOut(getHelpString()); }  
29         
30         
31 private:
32         
33         string outputFile, sharedfile, outputDir;
34         vector<string> outputNames;
35         ofstream out;
36         ifstream in;
37         bool abort;
38
39 };
40
41 #endif