]> git.donarmstrong.com Git - mothur.git/blob - getcurrentcommand.h
Revert to previous commit
[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                 string getCitation() { return "http://www.mothur.org/wiki/Get.current"; }
27                 string getDescription()         { return "get current files saved by mothur"; }
28
29         
30                 int execute(); 
31                 void help() { m->mothurOut(getHelpString()); }  
32         
33         
34         private:
35                 
36                 vector<string> outputNames;
37                 bool abort;
38         
39                 string clearTypes;
40                 vector<string> types;
41                 
42 };
43
44 #endif
45