]> git.donarmstrong.com Git - mothur.git/blob - makefastqcommand.h
946c990047fe8ad65f2fb332deb6e072534fc932
[mothur.git] / makefastqcommand.h
1 #ifndef MAKEFASTQCOMMAND_H
2 #define MAKEFASTQCOMMAND_H
3
4 /*
5  *  makefastqcommand.h
6  *  mothur
7  *
8  *  Created by westcott on 2/14/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15
16 class MakeFastQCommand : public Command {
17         
18 public:
19         
20         MakeFastQCommand(string);       
21         MakeFastQCommand();
22         ~MakeFastQCommand(){}
23         
24         vector<string> setParameters();
25         string getCommandName()                 { return "make.fastq";                          }
26         string getCommandCategory()             { return "Sequence Processing";         }
27         string getHelpString(); 
28         
29         int execute(); 
30         void help() { m->mothurOut(getHelpString()); }  
31         
32         
33 private:
34         
35         string fastafile, qualfile, outputDir;
36         bool abort;
37         vector<string> outputNames;
38         
39         string convertQual(vector<int>);
40         
41 };
42
43 #endif
44
45