]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeracheckcommand.h
some bug fixes
[mothur.git] / chimeracheckcommand.h
index 6db61bd82cbfe30fd2b8c5d48e43f83b3df266b3..84c75ac8b8ff49e85cec777ffb8d2beeec544990 100644 (file)
@@ -13,6 +13,7 @@
 #include "mothur.h"
 #include "command.hpp"
 #include "chimera.h"
+#include "chimeracheckrdp.h"
 
 
 /***********************************************************/
@@ -28,9 +29,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,15 +40,17 @@ private:
        int createProcesses(string, string);
                
        #ifdef USE_MPI
-       int driverMPI(int, int, MPI_File&, MPI_File&, vector<long>&);
+       int driverMPI(int, int, MPI_File&, MPI_File&, vector<unsigned long int>&);
        #endif
 
        bool abort, svg;
        string fastafile, templatefile, namefile, outputDir;
        int processors, increment, ksize, numSeqs, templateSeqsLength;
        Chimera* chimera;
-       
-       
+       vector<string> fastaFileNames;
+       vector<string> nameFileNames;
+       vector<string> outputNames;
+               
 };
 
 /***********************************************************/