X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=reversecommand.h;h=f7f729c9848ae0fa972944ae5b51ec18cceaca1d;hp=aad454313b6668699ea8626cfdf883b8b2d4902e;hb=a8e2df1b96a57f5f29576b08361b86a96a8eff4f;hpb=315e38cf393c82be238da5b32574f225a020d25c diff --git a/reversecommand.h b/reversecommand.h index aad4543..f7f729c 100644 --- a/reversecommand.h +++ b/reversecommand.h @@ -10,20 +10,32 @@ * */ -#include "mothur.h" #include "command.hpp" class ReverseSeqsCommand : public Command { public: ReverseSeqsCommand(string); - ~ReverseSeqsCommand(); - int execute(); - void help(); + ReverseSeqsCommand(); + ~ReverseSeqsCommand() {} + + vector setParameters(); + string getCommandName() { return "reverse.seqs"; } + string getCommandCategory() { return "Sequence Processing"; } + + string getHelpString(); + string getOutputPattern(string); + string getCitation() { return "http://www.mothur.org/wiki/Reverse.seqs"; } + string getDescription() { return "outputs a fasta file containing the reverse-complements"; } + + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: bool abort; - string fasta, outputDir; + string fastaFileName, qualFileName, outputDir; + vector outputNames; };