X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=fullmatrix.h;h=e2c0e31b5fa8e4ed81ced8ba88b61fc4620adbf3;hb=7a7870ab773b993d8d1fd89703b1df3beb47f8d4;hp=0bd5c873ea4da00bc48d8a3395844f80151bd630;hpb=8fd4a602269974e6548f4a387dddd6bd80a999ab;p=mothur.git diff --git a/fullmatrix.h b/fullmatrix.h index 0bd5c87..e2c0e31 100644 --- a/fullmatrix.h +++ b/fullmatrix.h @@ -14,36 +14,46 @@ #include "globaldata.hpp" #include "progress.hpp" -using namespace std; struct Names { - string groupname; string seqName; - float minDist; + string groupName; }; - class FullMatrix { - public: - FullMatrix(){}; - FullMatrix(ifstream&); - ~FullMatrix(){}; +public: + FullMatrix(){ m = MothurOut::getInstance(); } + FullMatrix(ifstream&); + ~FullMatrix(){}; - int getNumSeqs(); - void printMatrix(ostream&); + int getNumSeqs(); + vector getSizes(); + vector getGroups(); + void setGroups(vector names) { groups = names; } + void setSizes(vector s) { sizes = s; } + int getNumGroups(); + void printMatrix(ostream&); + float get(int, int); + Names getRowInfo(int row) { return index[row]; } - private: - void sortGroups(int, int); //this function sorts the sequences within the matrix. - void readSquareMatrix(ifstream&); - void readLTMatrix(ifstream&); - vector< vector > matrix; //a 2D distance matrix of all the sequences and their distances to eachother. - map index; // row in vector, sequence group. need to know this so when we sort it can be updated. - GroupMap* groupmap; //maps sequences to groups they belong to. - GlobalData* globaldata; - int numSeqs; - bool square; - +private: + vector< vector > matrix; //a 2D distance matrix of all the sequences and their distances to eachother. + int readSquareMatrix(ifstream&); + int readLTMatrix(ifstream&); + vector index; // row in vector, sequence group. need to know this so when we sort it can be updated. + vector sizes; + vector groups; + + void sortGroups(int, int); //this function sorts the sequences within the matrix. + void swapRows(int, int); + + GroupMap* groupmap; //maps sequences to groups they belong to. + int numSeqs; + int numGroups; + int numUserGroups; + GlobalData* globaldata; + MothurOut* m; }; -#endif \ No newline at end of file +#endif