]> git.donarmstrong.com Git - mothur.git/blob - reversecommand.h
added load.logfile command. changed summary.single output for subsample=t.
[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 getOutputFileNameTag(string, string);
25         string getHelpString(); 
26         string getCitation() { return "http://www.mothur.org/wiki/Reverse.seqs"; }
27         string getDescription()         { return "outputs a fasta file containing the reverse-complements"; }
28
29         
30         int execute(); 
31         void help() { m->mothurOut(getHelpString()); }  
32         
33 private:
34
35         bool abort;
36         string fastaFileName, qualFileName, outputDir;
37         vector<string> outputNames;
38         
39 };
40
41 #endif