]> git.donarmstrong.com Git - mothur.git/blobdiff - filterseqscommand.h
made changes to concensus to find a better tree. also fixed minor bug in venn with...
[mothur.git] / filterseqscommand.h
index 3f1e4c46d349d9da15837466502bd06a2f243883..611cbbc1b226c13d859273dc0cb356bb3b3d13d5 100644 (file)
@@ -11,9 +11,9 @@
  */
 
 #include "command.hpp"
-#include "globaldata.hpp"
-#include "sequence.hpp"
+#include "filters.h"
 
+class Sequence;
 class FilterSeqsCommand : public Command {
 
 public:
@@ -23,11 +23,6 @@ public:
        void help();
        
 private:
-       void doHard();
-       void doTrump(Sequence);
-       void doVertical();
-       void doSoft();
-       void getFreqs(Sequence);
        string vertical, filter, fastafile, hard;       
        int alignmentLength;
 
@@ -35,11 +30,9 @@ private:
        bool abort;
        float soft;
        int numSeqs;
-       OptionParser* parser;
-       map<string, string> parameters;
-       map<string, string>::iterator it;
        
-       GlobalData* globaldata; 
+       Filters F;
+               
        vector<int> a, t, g, c, gap;
 
 };