]> 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 06eaa6db7e2deb8b74344d7f408f09734cbf43cf..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 doFilter();
-       
-       GlobalData* globaldata;
-       string filename, trump, filter;
-       
-       ReadSeqs* readSeqs;
+       string vertical, filter, fastafile, hard;       
+       int alignmentLength;
+
+       char trump;
+       bool abort;
+       float soft;
+       int numSeqs;
        
-       vector<bool> columnsToRemove;
-       SequenceDB* db;
-       double soft;
+       Filters F;
+               
+       vector<int> a, t, g, c, gap;
+
 };
 
-#endif
\ No newline at end of file
+#endif