]> git.donarmstrong.com Git - mothur.git/blob - pipelinepdscommand.h
Revert to previous commit
[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         string getCitation() { return "http://www.mothur.org/wiki/Pipeline.pds"; }
31         string getDescription()         { return "pat's pipeline"; }
32
33         
34         int execute(); 
35         void help() { m->mothurOut(getHelpString()); }  
36         
37 private:
38         bool abort;
39         CommandFactory* cFactory;
40         vector<string> outputNames;
41         vector<string> commands;
42         string outputDir, sffFile, alignFile, oligosFile, taxonomyFile, pipeFilename, classifyFile, chimeraFile;
43         int processors;
44         
45         bool readUsersPipeline();
46         int runUsersPipeline();
47         void createPatsPipeline();
48         bool parseCommand(string, string&, string&);
49         bool checkForValidAndRequiredParameters(string, string, map<string, vector<string> >&);
50         bool fillInMothurMade(string&, map<string, vector<string> >&);
51 };
52
53 /****************************************************/
54
55 #endif
56