]> git.donarmstrong.com Git - mothur.git/blobdiff - screenseqscommand.h
added MPI to dist.seqs command
[mothur.git] / screenseqscommand.h
index 425b473d4e1e7204ff460a00220bacc023dd0333..54f4bb153d66b89728a1d10fd073cb14f3957779 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; 
+       int screenNameGroupFile(set<string>);
+       int screenGroupFile(set<string>);
+       int screenAlignReport(set<string>);
+       
+       bool abort;
+       string fastafile, namefile, groupfile, alignreport, outputDir;
+       int startPos, endPos, maxAmbig, maxHomoP, minLength, maxLength;
+       vector<string> outputNames;
 };
 
 #endif