]> git.donarmstrong.com Git - mothur.git/blob - source/setcurrentcommand.h
3949519e9ec3f04392d555539fd5409dcab59dea
[mothur.git] / source / 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         string getDescription()         { return "set current files for mothur"; }
29
30         int execute(); 
31         void help() { m->mothurOut(getHelpString()); }  
32         
33 private:
34         
35         vector<string> outputNames;
36         bool abort;
37         
38         string clearTypes;
39         vector<string> types;
40         
41         string accnosfile, phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, designfile, taxonomyfile, biomfile;
42         string orderfile, treefile, sharedfile, ordergroupfile, relabundfile, fastafile, qualfile, sfffile, oligosfile, processors, flowfile;
43
44         
45 };
46
47 #endif
48
49