]> git.donarmstrong.com Git - mothur.git/blobdiff - readmatrix.hpp
created mothurOut class to handle logfiles
[mothur.git] / readmatrix.hpp
index d8f9bd11eff62b07593c29e728c35c5ddcf2ac2f..2c47832f166ea0df47a7b5f5a8760c73f9ce2dfe 100644 (file)
@@ -21,7 +21,7 @@ class SparseMatrix;
 class ReadMatrix {
 
 public:
-       ReadMatrix(){   D = new SparseMatrix(); }
+       ReadMatrix(){   D = new SparseMatrix();  m = MothurOut::getInstance();  }
        virtual ~ReadMatrix() {}
        virtual void read(NameAssignment*){};
        virtual void read(GlobalData* globaldata){};
@@ -37,6 +37,7 @@ protected:
        ListVector* list;
        GlobalData* globaldata;
        float cutoff;
+       MothurOut* m;
 };