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