]> git.donarmstrong.com Git - mothur.git/blob - reversecommand.h
added citation function to commands
[mothur.git] / reversecommand.h
1 #ifndef REVERSECOMMAND_H
2 #define REVERSECOMMAND_H
3
4 /*
5  *  reversecommand.h
6  *  Mothur
7  *
8  *  Created by Pat Schloss on 6/6/09.
9  *  Copyright 2009 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15 class ReverseSeqsCommand : public Command {
16 public:
17         ReverseSeqsCommand(string);
18         ReverseSeqsCommand();
19         ~ReverseSeqsCommand() {}
20         
21         vector<string> setParameters();
22         string getCommandName()                 { return "reverse.seqs";                        }
23         string getCommandCategory()             { return "Sequence Processing";         }
24         string getHelpString(); 
25         string getCitation() { return "http://www.mothur.org/wiki/Reverse.seqs"; }
26         
27         int execute(); 
28         void help() { m->mothurOut(getHelpString()); }  
29         
30 private:
31
32         bool abort;
33         string fastaFileName, qualFileName, outputDir;
34         vector<string> outputNames;
35         
36 };
37
38 #endif