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