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