X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=readblast.h;h=97ce6c74cbf768aeec8d2f879fb7c8ad887a1042;hp=fd32380c20c1a7145a8c65d07700b54d2d5bc63b;hb=1a20e24ee786195ab0e1cccd4f5aede7a88f3f4e;hpb=aa9238c0a9e6e7aa0ed8b8b606b08ad4fd7dcfe3 diff --git a/readblast.h b/readblast.h index fd32380..97ce6c7 100644 --- a/readblast.h +++ b/readblast.h @@ -10,7 +10,7 @@ */ #include "mothur.h" -#include "sparsematrix.hpp" +#include "sparsedistancematrix.h" #include "nameassignment.hpp" /****************************************************************************************/ @@ -26,10 +26,10 @@ public: ~ReadBlast() {} int read(NameAssignment*); - SparseMatrix* getDistMatrix() { return matrix; } - vector getOverlapMatrix() { return overlap; } - string getOverlapFile() { return overlapFile; } - string getDistFile() { return distFile; } + SparseDistanceMatrix* getDistMatrix() { return matrix; } + vector getOverlapMatrix() { return overlap; } + string getOverlapFile() { return overlapFile; } + string getDistFile() { return distFile; } private: string blastfile, overlapFile, distFile; @@ -38,7 +38,7 @@ private: bool minWanted; //if true choose min bsr, if false choose max bsr bool hclusterWanted; - SparseMatrix* matrix; + SparseDistanceMatrix* matrix; vector overlap; MothurOut* m;