]> git.donarmstrong.com Git - mothur.git/blob - readotucommand.h
543642b66b4bd4b889fd54c8d19776fc71b17b8d
[mothur.git] / readotucommand.h
1 #ifndef READOTUCOMMAND_H
2 #define READOTUCOMMAND_H
3 /*
4  *  readotu.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 1/20/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "command.hpp"
13 #include "readotu.h"
14 #include "inputdata.h"
15 #include "groupmap.h"
16 #include "sharedcommand.h"
17
18 class GlobalData;
19
20 class ReadOtuCommand : public Command {
21 public:
22         ReadOtuCommand(string);
23         ~ReadOtuCommand();
24         int execute();
25         void help();
26         
27 private:
28         GlobalData* globaldata;
29         InputData* input;
30         Command* shared;
31         GroupMap* groupMap;
32         string filename, listfile, orderfile, sharedfile, label, groupfile, sabundfile, rabundfile, format, groups;
33         vector<string> Groups;
34
35         bool abort, allLines;
36         set<string> labels; //holds labels to be used
37
38 };
39
40 #endif