X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=readmatrix.hpp;fp=readmatrix.hpp;h=90d5b430de4a1ce73e5a9c03880333c4b39febad;hb=5a4ac4f954c4b4445bcee272f1f8220ddcc9c1e4;hp=5ef8afa9d7846a18957ac30cb483e0be98f6450f;hpb=0cefb55a2616975bd4a144fc345693695ffc9bb6;p=mothur.git diff --git a/readmatrix.hpp b/readmatrix.hpp index 5ef8afa..90d5b43 100644 --- a/readmatrix.hpp +++ b/readmatrix.hpp @@ -13,6 +13,7 @@ #include "mothur.h" #include "listvector.hpp" #include "nameassignment.hpp" +#include "counttable.h" #include "sparsedistancematrix.h" class SparseMatrix; @@ -23,6 +24,7 @@ public: ReadMatrix(){ DMatrix = new SparseDistanceMatrix(); m = MothurOut::getInstance(); } virtual ~ReadMatrix() {} virtual int read(NameAssignment*){ return 1; } + virtual int read(CountTable*){ return 1; } void setCutoff(float c) { cutoff = c; } SparseDistanceMatrix* getDMatrix() { return DMatrix; }