]> git.donarmstrong.com Git - mothur.git/blobdiff - classifyseqscommand.h
fixed order of unifrac commands so that it matches the summary commands
[mothur.git] / classifyseqscommand.h
index 3294118343bbf763fa93dc56b6a05a3f8043c5ca..84f5f9f04d6752728c5f3bf72d5688cafd73b723 100644 (file)
@@ -36,9 +36,10 @@ public:
 private:
        struct linePair {
                unsigned long int start;
-               int numSeqs;
-               linePair(unsigned long int i, int j) : start(i), numSeqs(j) {}
+               unsigned long int end;
+               linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {}
        };
+
        vector<int> processIDS;   //processid
        vector<linePair*> lines;
        vector<string> fastaFileNames;
@@ -56,12 +57,12 @@ private:
        
        int driver(linePair*, string, string, string);
        void appendTaxFiles(string, string);
-       void createProcesses(string, string, string); 
+       int createProcesses(string, string, string); 
        string addUnclassifieds(string, int);
        
        int MPIReadNamesFile(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
 };