]> git.donarmstrong.com Git - mothur.git/blob - getrabundcommand.h
added get.rabund and get.sabund command and fixed bug introduced by line by line...
[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();
24         ~GetRAbundCommand();
25         int execute();
26         
27 private:
28         GlobalData* globaldata;
29         string filename;
30         ofstream out;
31         ReadOTUFile* read;
32         InputData* input;
33         ListVector* list;
34         RAbundVector* rabund;
35 };
36
37 #endif
38