]> git.donarmstrong.com Git - mothur.git/blobdiff - reversecommand.h
consensus.seqs can now find a consensus on a whole fasta file without needing a listfile
[mothur.git] / reversecommand.h
index b47ee3a51d614c84f746a1f231894809059bcad3..8b5bcd262528e36f756093a8236f8a1b3a447ce8 100644 (file)
  *
  */
 
-#include "mothur.h"
 #include "command.hpp"
 
 class ReverseSeqsCommand : public Command {
 public:
        ReverseSeqsCommand(string);
+       ReverseSeqsCommand();
        ~ReverseSeqsCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
        void help();
        
 private:
 
        bool abort;
-       string fasta;
+       string fasta, outputDir;
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
        
 };