]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeraccodecommand.h
working on windows paralellization, added trimOligos class to be used by trim.flows...
[mothur.git] / chimeraccodecommand.h
index 2bf7a70fd159a93fcc813c3236aed97a8c18c916..5b8092b6f7075111c7fa8c5c58caf14ef3ebaeca 100644 (file)
@@ -36,9 +36,9 @@ public:
                
 private:
        struct linePair {
-               unsigned long int start;
-               unsigned long int end;
-               linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {}
+               unsigned long long start;
+               unsigned long long end;
+               linePair(unsigned long long i, unsigned long long j) : start(i), end(j) {}
        };
        vector<int> processIDS;   //processid
        vector<linePair*> lines;
@@ -47,10 +47,10 @@ private:
        int createProcesses(string, string, string);
        
        #ifdef USE_MPI
-       int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector<unsigned long int>&);
+       int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector<unsigned long long>&);
        #endif
 
-       bool abort, filter;
+       bool abort, filter, save;
        string fastafile, templatefile, outputDir, maskfile;
        int processors, window, numwanted, numSeqs, templateSeqsLength;
        Chimera* chimera;