]> git.donarmstrong.com Git - mothur.git/blob - makefastqcommand.h
Revert to previous commit
[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         string getCitation() { return "http://www.mothur.org/wiki/Make.fastq"; }
29         string getDescription()         { return "creates a fastq file from a fasta and quality file"; }
30
31         
32         int execute(); 
33         void help() { m->mothurOut(getHelpString()); }  
34         
35         
36 private:
37         
38         string fastafile, qualfile, outputDir;
39         bool abort;
40         vector<string> outputNames;
41         
42         string convertQual(vector<int>);
43         
44 };
45
46 #endif
47
48