]> git.donarmstrong.com Git - mothur.git/blobdiff - distancedb.hpp
added MPI code, broke up chimera.seqs into 5 separated commands, added parse.sff...
[mothur.git] / distancedb.hpp
index 01fea59aeec3b340041fea68e26120cfd307a873..47e5fd7b4911de428712bb9a5271fd61ce20b172 100644 (file)
@@ -25,6 +25,11 @@ public:
        void addSequence(Sequence);  
        vector<int> findClosestSequences(Sequence*, int);  // returns indexes of n closest sequences to query
        
+       #ifdef USE_MPI  
+       int MPISend(int) {return 0;}
+       int MPIRecv(int) {return 0;}
+       #endif
+       
 private:
        vector<Sequence> data;
        Dist* distCalculator;