]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeraseqscommand.h
added pipeline commands which involved change to command factory and command class...
[mothur.git] / chimeraseqscommand.h
index 455ac926a494d162839444a5e192f9a030556d07..7e51748b3b7c8b16bf983e44f0771275f7cd532f 100644 (file)
 
 #include "mothur.h"
 #include "command.hpp"
-#include "filterseqscommand.h"
-#include "sequence.hpp"
-
-
 
 /***********************************************************/
 
 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:
-       //Dist* distCalculator;
-       
-       struct Preference {
-               string leftParent;
-               string rightParent;
-               float score;
-
-       };
-
-
-       bool abort;
-       string method, fastafile;
-       bool filter, correction;
-       int processors, midpoint;
-       FilterSeqsCommand* filterSeqs;
-       vector<Sequence> seqs;
-       vector<Preference> pref;
-       
-       int findAverageMidPoint();
-       void readSeqs();
-       
+       vector<string> outputNames;
+       map< string, vector<string> > outputTypes;
 
 };