]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeraccodecommand.h
changed file divide for trim.seqs
[mothur.git] / chimeraccodecommand.h
index a07178e720ba59716c22d8d685624db2e3d83c0b..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,10 +38,10 @@ 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, MPIWroteAccnos;
+       bool abort, filter;
        string fastafile, templatefile, outputDir, maskfile;
        int processors, window, numwanted, numSeqs, templateSeqsLength;
        Chimera* chimera;