]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeraslayercommand.h
working on unifrac parallelization
[mothur.git] / chimeraslayercommand.h
index 7c20fb912bd321a121a410da45ed9abc87fce474..c5ef88885d9b4c1e7275c998e8a2b35bbbbba99b 100644 (file)
@@ -28,10 +28,11 @@ public:
 private:
 
        struct linePair {
-               int start;
-               int numSeqs;
-               linePair(long int i, int j) : start(i), numSeqs(j) {}
+               unsigned long int start;
+               unsigned long int end;
+               linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {}
        };
+
        vector<int> processIDS;   //processid
        vector<linePair*> lines;
        
@@ -39,7 +40,7 @@ private:
        int createProcesses(string, string, string);
                
        #ifdef USE_MPI
-       int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector<long>&);
+       int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector<unsigned long int>&);
        #endif
 
        bool abort, realign;