X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=readmatrix.hpp;fp=readmatrix.hpp;h=0000000000000000000000000000000000000000;hb=4a877efa127e56e81a21f53cfdbbfd3bfbe8c4ff;hp=49ae2946fda42c49c8475b040ac8f7e3f5617499;hpb=a6cf29fa4dac0909c7582cb1094151d34093ee76;p=mothur.git diff --git a/readmatrix.hpp b/readmatrix.hpp deleted file mode 100644 index 49ae294..0000000 --- a/readmatrix.hpp +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef READMATRIX_HPP -#define READMATRIX_HPP - -/* - * readmatrix.hpp - * - * - * Created by Pat Schloss on 8/13/08. - * Copyright 2008 Patrick D. Schloss. All rights reserved. - * - */ - -#include "mothur.h" -#include "listvector.hpp" -#include "sparsematrix.hpp" -#include "nameassignment.hpp" - -class SparseMatrix; - -class ReadMatrix { - -public: - ReadMatrix(){ D = new SparseMatrix(); m = MothurOut::getInstance(); } - virtual ~ReadMatrix() {} - virtual int read(NameAssignment*){ return 1; } - - void setCutoff(float c) { cutoff = c; } - SparseMatrix* getMatrix() { return D; } - ListVector* getListVector() { return list; } -// OrderVector* getOrderVector() { return order; } - - int successOpen; - -protected: - SparseMatrix* D; - ListVector* list; - float cutoff; - MothurOut* m; - bool sim; -}; - - - -#endif