]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeraslayercommand.h
changed how we break up the files on parallelized commands to avoid scanning file.
[mothur.git] / chimeraslayercommand.h
index 95541b2b6aac8a636242dba385c1114267416bb4..c5ef88885d9b4c1e7275c998e8a2b35bbbbba99b 100644 (file)
@@ -29,9 +29,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;