]> git.donarmstrong.com Git - mothur.git/blobdiff - screenseqscommand.h
a few modifications for 1.9
[mothur.git] / screenseqscommand.h
index f88fe2c442cf1d8ea6b0457a45390383c0c45698..54f4bb153d66b89728a1d10fd073cb14f3957779 100644 (file)
  */
 #include "mothur.h"
 #include "command.hpp"
-#include "globaldata.hpp"
-#include "readfasta.h"
-#include "readnexus.h"
-#include "readclustal.h"
-#include "readseqsphylip.h"
-#include <set>
-
-using namespace std;
 
 class ScreenSeqsCommand : public Command {
        
 public:
-       ScreenSeqsCommand();
+       ScreenSeqsCommand(string);
        ~ScreenSeqsCommand();
        int execute();
+       void help();
+       
 private:
-       void screenNameGroupFile(set<string>);
-       int numSeqs;    
-       GlobalData* globaldata; 
-       ReadSeqs* readSeqs;
-       SequenceDB* db;
+       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