]> git.donarmstrong.com Git - mothur.git/blob - sracommand.h
added binary file operations to mothurout class. added comment to sequence class...
[mothur.git] / sracommand.h
1 //
2 //  sracommand.h
3 //  Mothur
4 //
5 //  Created by SarahsWork on 10/28/13.
6 //  Copyright (c) 2013 Schloss Lab. All rights reserved.
7 //
8
9 #ifndef Mothur_sracommand_h
10 #define Mothur_sracommand_h
11
12 #include "command.hpp"
13
14
15 /**************************************************************************************************/
16
17 class SRACommand : public Command {
18 public:
19     SRACommand(string);
20     SRACommand();
21     ~SRACommand(){}
22     
23     vector<string> setParameters();
24     string getCommandName()                     { return "sra";                 }
25     string getCommandCategory()         { return "Sequence Processing";         }
26     
27     string getOutputPattern(string);
28     
29         string getHelpString();
30     string getCitation() { return "http://www.mothur.org/wiki/sra"; }
31     string getDescription()             { return "create a Sequence Read Archive / SRA"; }
32     
33     int execute();
34     void help() { m->mothurOut(getHelpString()); }
35     
36 private:
37     bool abort;
38     string sfffiles, fastqfiles, platform, outputDir;
39     vector<string> outputNames;
40 };
41
42 /**************************************************************************************************/
43
44
45
46 #endif