]> git.donarmstrong.com Git - mothur.git/blobdiff - screenseqscommand.h
changed how we break up the files on parallelized commands to avoid scanning file.
[mothur.git] / screenseqscommand.h
index 071724f79cb45c69bb4c4237c072ddc462188439..8f62ae48af466148c56b2b7b53aef7240cb95761 100644 (file)
@@ -24,9 +24,10 @@ private:
 
        struct linePair {
                unsigned long int start;
-               int numSeqs;
-               linePair(unsigned long int i, int j) : start(i), numSeqs(j) {}
+               unsigned long int end;
+               linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {}
        };
+
        vector<int> processIDS;   //processid
        vector<linePair*> lines;