]> git.donarmstrong.com Git - mothur.git/blob - makefastqcommand.h
added citation function to commands
[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         
30         int execute(); 
31         void help() { m->mothurOut(getHelpString()); }  
32         
33         
34 private:
35         
36         string fastafile, qualfile, outputDir;
37         bool abort;
38         vector<string> outputNames;
39         
40         string convertQual(vector<int>);
41         
42 };
43
44 #endif
45
46