]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeraseqscommand.h
added template=self capability to chimers.slayer, worked on corr.axes and added accno...
[mothur.git] / chimeraseqscommand.h
index dc7df8fad969d33a2fa51f46718f5aa4812321f1..7e51748b3b7c8b16bf983e44f0771275f7cd532f 100644 (file)
 
 #include "mothur.h"
 #include "command.hpp"
-#include "chimera.h"
-
 
 /***********************************************************/
 
 class ChimeraSeqsCommand : public Command {
 public:
        ChimeraSeqsCommand(string);
+       ChimeraSeqsCommand() {}
        ~ChimeraSeqsCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map< string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
        void help();
        
                
 private:
-       
-       bool abort;
-       string method, fastafile, templatefile;
-       bool filter, correction;
-       int processors, midpoint, averageLeft, averageRight, window, iters, increment;
-       Chimera* chimera;
-       
-       
+       vector<string> outputNames;
+       map< string, vector<string> > outputTypes;
+
 };
 
 /***********************************************************/