]> git.donarmstrong.com Git - mothur.git/blobdiff - filterseqscommand.h
fixed some bugs and added scriptengine
[mothur.git] / filterseqscommand.h
index 4b7d0111f11f5712dc9075bf313ec695222c7d7c..cfa56b39df6a4001014e1bc42048bed50bede8fa 100644 (file)
  */
 
 #include "command.hpp"
-#include "globaldata.hpp"
-#include "readfasta.h"
-#include "readnexus.h"
-#include "readclustal.h"
-#include "readseqsphylip.h"
-
 
+class Sequence;
 class FilterSeqsCommand : public Command {
 
 public:
-       FilterSeqsCommand();
+       FilterSeqsCommand(string);
        ~FilterSeqsCommand() {};
        int execute();  
+       void help();
        
 private:
        void doHard();
@@ -31,16 +27,16 @@ private:
        void doVertical();
        void doSoft();
        void getFreqs(Sequence);
-       string filter;  
+       string vertical, filter, fastafile, hard;       
        int alignmentLength;
 
        char trump;
-       bool vertical;
+       bool abort;
        float soft;
        int numSeqs;
        
-       GlobalData* globaldata; 
        vector<int> a, t, g, c, gap;
+
 };
 
 #endif