]> git.donarmstrong.com Git - mothur.git/blob - parsefastaqcommand.h
added pipeline commands which involved change to command factory and command class...
[mothur.git] / parsefastaqcommand.h
1 #ifndef PARSEFASTAQCOMMAND_H
2 #define PARSEFASTAQCOMMAND_H
3
4 /*
5  *  parsefastaqcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 9/30/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15
16 class ParseFastaQCommand : public Command {
17
18 public:
19         ParseFastaQCommand(string);
20         ParseFastaQCommand();
21         ~ParseFastaQCommand();
22         vector<string> getRequiredParameters();
23         vector<string> getValidParameters();
24         vector<string> getRequiredFiles();
25         map<string, vector<string> > getOutputFiles() { return outputTypes; }
26         int execute();
27         void help();    
28         
29 private:
30
31         vector<string> outputNames;     
32         map<string, vector<string> > outputTypes;
33         string outputDir, fastaQFile;
34         bool abort;
35         
36         vector<int> convertQual(string);
37 };
38
39 #endif
40
41