]> git.donarmstrong.com Git - mothur.git/blob - getsabundcommand.h
removed line option
[mothur.git] / getsabundcommand.h
1 #ifndef GETSABUNDCOMMAND_H
2 #define GETSABUNDCOMMAND_H
3
4 /*
5  *  getsabundcommand.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 "sabundvector.hpp"
18
19 class GlobalData;
20
21 class GetSAbundCommand : public Command {
22 public:
23         GetSAbundCommand(string);
24         ~GetSAbundCommand();
25         int execute();
26         void help();
27         
28 private:
29         GlobalData* globaldata;
30         string filename, format;
31         ofstream out;
32         ReadOTUFile* read;
33         OrderVector* order;
34         InputData* input;
35         SAbundVector* sabund;
36
37         bool abort, allLines;
38         set<string> labels; //holds labels to be used
39         string label;
40
41 };
42
43 #endif