]> git.donarmstrong.com Git - mothur.git/blob - getrelabundcommand.h
added mpi code to cluster.split command
[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 "readotu.h"
16 #include "sharedrabundvector.h"
17
18 class GlobalData;
19
20 class GetRelAbundCommand : public Command {
21
22 public:
23         GetRelAbundCommand(string);
24         ~GetRelAbundCommand();
25         int execute();
26         void help();
27         
28 private:
29         GlobalData* globaldata;
30         ReadOTUFile* read;
31         InputData* input;
32         vector<SharedRAbundVector*> lookup;
33         
34         bool abort, allLines;
35         set<string> labels; //holds labels to be used
36         string groups, label, outputDir, scale;
37         vector<string> Groups;
38         
39         int getRelAbundance(vector<SharedRAbundVector*>, ofstream&);
40
41 };
42
43 #endif
44