]> git.donarmstrong.com Git - mothur.git/blobdiff - trimseqscommand.h
changed file divide for trim.seqs
[mothur.git] / trimseqscommand.h
index ee79d777a8d11ffaa2e279e69463314f9c3b8938..93e8c776918ec9fa2d6f661d7c178380a4f47d66 100644 (file)
@@ -13,6 +13,7 @@
 #include "mothur.h"
 #include "command.hpp"
 #include "sequence.hpp"
+#include "qualityscores.h"
 
 class TrimSeqsCommand : public Command {
 public:
@@ -22,25 +23,45 @@ public:
        void help();
        
 private:
-       void getOligos(vector<ofstream*>&, vector<ofstream*>&);
-       bool stripQualThreshold(Sequence&, ifstream&);
-       bool cullQualAverage(Sequence&, ifstream&);
-       bool stripBarcode(Sequence&, int&);
-       bool stripForward(Sequence&);
-       bool stripReverse(Sequence&);
+
+       struct linePair {
+               unsigned long int start;
+               unsigned long int end;
+               linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {}
+       };
+
+       void getOligos(vector<string>&, vector<string>&);
+       int stripBarcode(Sequence&, QualityScores&, int&);
+       int stripForward(Sequence&, QualityScores&, int&);
+       bool stripReverse(Sequence&, QualityScores&);
        bool cullLength(Sequence&);
        bool cullHomoP(Sequence&);
        bool cullAmbigs(Sequence&);
        bool compareDNASeq(string, string);
+       int countDiffs(string, string);
 
        bool abort;
-       string fastaFile, oligoFile, qFileName;
+       string fastaFile, oligoFile, qFileName, outputDir;
        
-       bool flip, allFiles;
-       int numFPrimers, numRPrimers, maxAmbig, maxHomoP, minLength, maxLength, qThreshold, qAverage;
-       vector<string> forPrimer, revPrimer;
+       bool flip, allFiles, qtrim;
+       int numFPrimers, numRPrimers, maxAmbig, maxHomoP, minLength, maxLength, processors, tdiffs, bdiffs, pdiffs, comboStarts;
+       int qWindowSize, qWindowStep;
+       double qRollAverage, qThreshold, qWindowAverage, qAverage;
+       vector<string> revPrimer, outputNames;
+       set<string> filesToRemove;
        map<string, int> barcodes;
        vector<string> groupVector;
+       map<string, int> primers;
+       map<string, int> combos;
+       
+       vector<int> processIDS;   //processid
+       vector<linePair*> lines;
+       vector<linePair*> qLines;
+       
+       int driverCreateTrim(string, string, string, string, string, string, string, vector<string>, vector<string>, linePair*, linePair*);     
+       int createProcessesCreateTrim(string, string, string, string, string, string, string, vector<string>, vector<string>);
+       int setLines(string, string, vector<unsigned long int>&, vector<unsigned long int>&);
+       
 };
 
 #endif