]> git.donarmstrong.com Git - mothur.git/blobdiff - screenseqscommand.h
made changes to concensus to find a better tree. also fixed minor bug in venn with...
[mothur.git] / screenseqscommand.h
index 425b473d4e1e7204ff460a00220bacc023dd0333..269275d38409c251ef3f9b0b1c2552602367f348 100644 (file)
  */
 #include "mothur.h"
 #include "command.hpp"
-#include "globaldata.hpp"
-#include "readfasta.h"
-#include "readnexus.h"
-#include "readclustal.h"
-#include "readseqsphylip.h"
-
 
 class ScreenSeqsCommand : public Command {
        
 public:
-       ScreenSeqsCommand();
+       ScreenSeqsCommand(string);
        ~ScreenSeqsCommand();
        int execute();
+       void help();
+       
 private:
        void screenNameGroupFile(set<string>);
        void screenGroupFile(set<string>);
-
-       GlobalData* globaldata; 
+       void screenAlignReport(set<string>);
+       
+       bool abort;
+       string fastafile, namefile, groupfile, alignreport;
+       int startPos, endPos, maxAmbig, maxHomoP, minLength, maxLength;
 };
 
 #endif