]> git.donarmstrong.com Git - mothur.git/blob - pipelinepdscommand.h
13695a6ec9a178918ab74242d9a2f05a89b9ead7
[mothur.git] / pipelinepdscommand.h
1 #ifndef PIPELINEPDSCOMMAND_H
2 #define PIPELINEPDSCOMMAND_H
3
4 /*
5  *  pipelinepdscommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 10/5/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15 #include "commandfactory.hpp"
16
17 /****************************************************/
18
19 class PipelineCommand : public Command {
20         
21 public:
22         PipelineCommand(string);
23         PipelineCommand() { abort = true; calledHelp = true; setParameters(); }
24         ~PipelineCommand(){}
25         
26         vector<string> setParameters();
27         string getCommandName()                 { return "pipeline.pds";        }
28         string getCommandCategory()             { return "Hidden";                      }
29         string getHelpString(); 
30         
31         int execute(); 
32         void help() { m->mothurOut(getHelpString()); }  
33         
34 private:
35         bool abort;
36         CommandFactory* cFactory;
37         vector<string> outputNames;
38         vector<string> commands;
39         string outputDir, sffFile, alignFile, oligosFile, taxonomyFile, pipeFilename, classifyFile, chimeraFile;
40         int processors;
41         
42         bool readUsersPipeline();
43         int runUsersPipeline();
44         void createPatsPipeline();
45         bool parseCommand(string, string&, string&);
46         bool checkForValidAndRequiredParameters(string, string, map<string, vector<string> >&);
47         bool fillInMothurMade(string&, map<string, vector<string> >&);
48 };
49
50 /****************************************************/
51
52 #endif
53