]> git.donarmstrong.com Git - mothur.git/blobdiff - reversecommand.h
modified reverse.seqs and qualscores.cpp
[mothur.git] / reversecommand.h
index b47ee3a51d614c84f746a1f231894809059bcad3..bd8d1194ff095fa5fecff1b51570520b849dbf9a 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 fastaFileName, qualFileName, outputDir;
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
        
 };