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