]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeraccodecommand.h
working on parallelizing unifrac.unweighted.
[mothur.git] / chimeraccodecommand.h
index c3d71c920ee2d84e8c6a2738e21cbcb840d4a8c5..d980288ac3585916321edec15114d0c47303e120 100644 (file)
@@ -26,11 +26,10 @@ 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 +38,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, filter;