]> git.donarmstrong.com Git - mothur.git/blob - setcurrentcommand.h
e942e60b436acbd5ad9a014ddc8176c899e14806
[mothur.git] / setcurrentcommand.h
1 #ifndef SETCURRENTCOMMAND_H
2 #define SETCURRENTCOMMAND_H
3
4 /*
5  *  setcurrentcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 3/16/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15
16 class SetCurrentCommand : public Command {
17         
18 public:
19         SetCurrentCommand(string);
20         SetCurrentCommand();
21         ~SetCurrentCommand() {}
22         
23         vector<string> setParameters();
24         string getCommandName()                 { return "set.current"; }
25         string getCommandCategory()             { return "General";             }
26         string getHelpString(); 
27         string getCitation() { return "http://www.mothur.org/wiki/Set.current"; }
28         
29         int execute(); 
30         void help() { m->mothurOut(getHelpString()); }  
31         
32 private:
33         
34         vector<string> outputNames;
35         bool abort;
36         
37         string clearTypes;
38         vector<string> types;
39         
40         string accnosfile, phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, designfile, taxonomyfile;
41         string orderfile, treefile, sharedfile, ordergroupfile, relabundfile, fastafile, qualfile, sfffile, oligosfile, processors, flowfile;
42
43         
44 };
45
46 #endif
47
48