]> git.donarmstrong.com Git - mothur.git/blobdiff - reversecommand.h
pat's fixes to pca command
[mothur.git] / reversecommand.h
index aad454313b6668699ea8626cfdf883b8b2d4902e..0d1da8801adc5a2b5e5bfe9cf81ef58789de534c 100644 (file)
  *
  */
 
-#include "mothur.h"
 #include "command.hpp"
 
 class ReverseSeqsCommand : public Command {
 public:
        ReverseSeqsCommand(string);
-       ~ReverseSeqsCommand();
-       int execute();
-       void help();
+       ReverseSeqsCommand();
+       ~ReverseSeqsCommand() {}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "reverse.seqs";                        }
+       string getCommandCategory()             { return "Sequence Processing";         }
+       string getHelpString(); 
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
        
 private:
 
        bool abort;
-       string fasta, outputDir;
+       string fastaFileName, qualFileName, outputDir;
+       vector<string> outputNames;
        
 };