]> git.donarmstrong.com Git - mothur.git/blob - getgroupcommand.h
fixed multiple bugs for 1.4 release
[mothur.git] / getgroupcommand.h
1 #ifndef GETGROUPCOMMAND_H
2 #define GETGROUPCOMMAND_H
3
4 /*
5  *  getgroupcommand.h
6  *  Mothur
7  *
8  *  Created by Thomas Ryabin on 2/2/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "globaldata.hpp"
15
16 class GetgroupCommand : public Command {
17 public:
18         GetgroupCommand();
19         ~GetgroupCommand();
20         int execute();
21         
22 private:
23         GlobalData* globaldata;
24         GroupMap* groupMap;
25         string outputFile, sharedfile;
26         ofstream out;
27         ifstream in;
28
29 };
30
31 #endif