X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=readmatrix.hpp;fp=readmatrix.hpp;h=66480e7a6999ed90830f45a730c49ab4b850c73f;hb=154e089bcd37c2c2f773e53ffb88a20170b27037;hp=cfa7731b45dd5b37f2b39365fc0c22a19a9534d5;hpb=fe342304a0fdff3ab48226e1dcfdab95d3a94a64;p=mothur.git diff --git a/readmatrix.hpp b/readmatrix.hpp index cfa7731..66480e7 100644 --- a/readmatrix.hpp +++ b/readmatrix.hpp @@ -11,15 +11,10 @@ */ #include "mothur.h" -#include "rabundvector.hpp" #include "listvector.hpp" -#include "sharedlistvector.h" #include "sparsematrix.hpp" #include "nameassignment.hpp" -#include "inputdata.h" #include "globaldata.hpp" -#include "sabundvector.hpp" -#include "groupmap.h" class SparseMatrix; @@ -40,58 +35,9 @@ protected: SparseMatrix* D; ListVector* list; GlobalData* globaldata; - OrderVector* order; - InputData* input; float cutoff; }; -class ReadPhylipMatrix : public ReadMatrix { - -public: - ReadPhylipMatrix(string); - ~ReadPhylipMatrix(); - void read(NameAssignment*); -private: - ifstream fileHandle; - string distFile; -}; - - - -class ReadColumnMatrix : public ReadMatrix { - -public: - ReadColumnMatrix(string); - ~ReadColumnMatrix(); - void read(NameAssignment*); -private: - ifstream fileHandle; - string distFile; -}; - - -class ReadPhilFile : public ReadMatrix { - -public: - ReadPhilFile(string); - ~ReadPhilFile(); - void read(GlobalData* globaldata); -private: - ifstream fileHandle; - string philFile; - InputData* input; - InputData* inputSabund; - InputData* inputList; - ListVector* list; - SharedListVector* SharedList; - OrderVector* order; - SAbundVector* sabund; - GlobalData* globaldata; - // InputData* getInput() { return input; } -}; - - - #endif