]> git.donarmstrong.com Git - mothur.git/blob - setcurrentcommand.h
added current as option is lists of file names, processors now outputted with current...
[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         
28         int execute(); 
29         void help() { m->mothurOut(getHelpString()); }  
30         
31 private:
32         
33         vector<string> outputNames;
34         bool abort;
35         
36         string clearTypes;
37         vector<string> types;
38         
39         string accnosfile, phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, designfile, taxonomyfile;
40         string orderfile, treefile, sharedfile, ordergroupfile, relabundfile, fastafile, qualfile, sfffile, oligosfile, processors, flowfile;
41
42         
43 };
44
45 #endif
46
47