]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeraslayercommand.h
fixed a trimming bug in sffinfo which occurs when the right trim point is smaller...
[mothur.git] / chimeraslayercommand.h
index 7c20fb912bd321a121a410da45ed9abc87fce474..95541b2b6aac8a636242dba385c1114267416bb4 100644 (file)
@@ -28,9 +28,9 @@ public:
 private:
 
        struct linePair {
-               int start;
+               unsigned long int start;
                int numSeqs;
-               linePair(long int i, int j) : start(i), numSeqs(j) {}
+               linePair(unsigned long int i, int j) : start(i), numSeqs(j) {}
        };
        vector<int> processIDS;   //processid
        vector<linePair*> lines;
@@ -39,7 +39,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;