]> git.donarmstrong.com Git - mothur.git/blob - getrelabundcommand.h
changes while testing
[mothur.git] / getrelabundcommand.h
1 #ifndef GETRELABUNDCOMMAND_H
2 #define GETRELABUNDCOMMAND_H
3
4 /*
5  *  getrelabundcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 6/21/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12  
13 #include "command.hpp"
14 #include "inputdata.h"
15 #include "sharedrabundvector.h"
16
17
18 class GetRelAbundCommand : public Command {
19
20 public:
21         GetRelAbundCommand(string);
22         GetRelAbundCommand();
23         ~GetRelAbundCommand(){}
24         
25         vector<string> setParameters();
26         string getCommandName()                 { return "get.relabund";                        }
27         string getCommandCategory()             { return "OTU-Based Approaches";        }
28         
29         string getHelpString(); 
30     string getOutputPattern(string);    
31         string getCitation() { return "http://www.mothur.org/wiki/Get.relabund"; }
32         string getDescription()         { return "calculates the relative abundance of each OTU in a sample"; }
33
34         
35         int execute(); 
36         void help() { m->mothurOut(getHelpString()); }  
37         
38 private:
39         InputData* input;
40         vector<SharedRAbundVector*> lookup;
41         
42         bool abort, allLines, pickedGroups;
43         set<string> labels; //holds labels to be used
44         string groups, label, outputDir, scale, sharedfile;
45         vector<string> Groups, outputNames;
46         
47         int getRelAbundance(vector<SharedRAbundVector*>&, ofstream&);
48
49 };
50
51 #endif
52