]> git.donarmstrong.com Git - mothur.git/blob - getrabundcommand.h
broke up globaldata and moved error checking and help into commands
[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 "readotu.h"
17 #include "listvector.hpp"
18
19 class GlobalData;
20
21 class GetRAbundCommand : public Command {
22 public:
23         GetRAbundCommand(string);
24         ~GetRAbundCommand();
25         int execute();
26         void help();
27         
28 private:
29         GlobalData* globaldata;
30         string filename;
31         ofstream out;
32         ReadOTUFile* read;
33         InputData* input;
34         ListVector* list;
35         RAbundVector* rabund;
36         OptionParser* parser;
37         map<string, string> parameters;
38         map<string, string>::iterator it;
39         bool abort, allLines;
40         set<int> lines; //hold lines to be used
41         set<string> labels; //holds labels to be used
42         string line, label;
43
44         
45 };
46
47 #endif
48