]> 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 b59d0a4b4cfa1ce7f7d86deb48b90515f5cc965a..611cbbc1b226c13d859273dc0cb356bb3b3d13d5 100644 (file)
  */
 
 #include "command.hpp"
-#include "mothur.h"
-#include "globaldata.hpp"
-#include "readfasta.h"
-#include "readnexus.h"
-#include "readclustal.h"
-#include "readseqsphylip.h"
-
-using namespace std;
+#include "filters.h"
 
+class Sequence;
 class FilterSeqsCommand : public Command {
 
 public:
-       FilterSeqsCommand();
+       FilterSeqsCommand(string);
        ~FilterSeqsCommand() {};
        int execute();  
+       void help();
        
 private:
-       void doTrump();
-       void doSoft();
-       void doHard();
-       void doVertical();
-       string filter;  
+       string vertical, filter, fastafile, hard;       
        int alignmentLength;
 
        char trump;
-       bool vertical;
-       
-       GlobalData* globaldata; 
-//     ReadSeqs* readSeqs;
-//     SequenceDB* db;
+       bool abort;
+       float soft;
+       int numSeqs;
        
+       Filters F;
+               
+       vector<int> a, t, g, c, gap;
 
 };