]> git.donarmstrong.com Git - mothur.git/blob - getrabundcommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / getrabundcommand.h
1 #ifndef GETRABUNDCOMMAND_H
2 #define GETRABUNDCOMMAND_H
3
4 /*
5  *  getrabundcommand.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 6/2/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15 #include "inputdata.h"
16 #include "listvector.hpp"
17
18
19 class GetRAbundCommand : public Command {
20 public:
21         GetRAbundCommand(string);
22         GetRAbundCommand();
23         ~GetRAbundCommand(){}
24         
25         vector<string> setParameters();
26         string getCommandName()                 { return "get.rabund";                          }
27         string getCommandCategory()             { return "OTU-Based Approaches";        }
28         string getHelpString(); 
29         
30         int execute(); 
31         void help() { m->mothurOut(getHelpString()); }  
32         
33         
34 private:
35         
36         string filename, listfile, sabundfile, inputfile, format, outputDir;
37         ofstream out;
38         InputData* input;
39         RAbundVector* rabund;
40         vector<string> outputNames;
41
42         bool abort, allLines, sorted;
43         set<string> labels; //holds labels to be used
44         string label;
45
46         
47 };
48
49 #endif
50