]> git.donarmstrong.com Git - mothur.git/blob - getcurrentcommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / getcurrentcommand.h
1 #ifndef GETCURRENTCOMMAND_H
2 #define GETCURRENTCOMMAND_H
3
4 /*
5  *  getcurrentcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 3/16/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15 class GetCurrentCommand : public Command {
16
17         public:
18                 GetCurrentCommand(string);
19                 GetCurrentCommand();
20                 ~GetCurrentCommand() {}
21         
22                 vector<string> setParameters();
23                 string getCommandName()                 { return "get.current"; }
24                 string getCommandCategory()             { return "General";             }
25                 string getHelpString(); 
26         
27                 int execute(); 
28                 void help() { m->mothurOut(getHelpString()); }  
29         
30         
31         private:
32                 
33                 vector<string> outputNames;
34                 bool abort;
35         
36                 string clearTypes;
37                 vector<string> types;
38                 
39 };
40
41 #endif
42