X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=fullmatrix.h;h=9de7ead566d4d5446b5ea405b5e3c7eb24991cc0;hb=541bab1dac00688b4c3a8c4a95ab464412663c50;hp=f3ad0e73dfb2615e4fbeb5bbd96f1a025c6a0ae6;hpb=9651e8e7172d86707b34af15e95ec60ad4c3c3f9;p=mothur.git diff --git a/fullmatrix.h b/fullmatrix.h index f3ad0e7..9de7ead 100644 --- a/fullmatrix.h +++ b/fullmatrix.h @@ -11,33 +11,48 @@ #include "mothur.h" #include "groupmap.h" -#include "globaldata.hpp" #include "progress.hpp" -using namespace std; + +struct Names { + string seqName; + string groupName; +}; class FullMatrix { - public: - FullMatrix(){}; - FullMatrix(ifstream&); - ~FullMatrix(){}; +public: + //FullMatrix(){ m = MothurOut::getInstance(); } + FullMatrix(ifstream&, GroupMap*, bool); + ~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(); //this function sorts the sequences within the matrix. - void quicksort(int, int, int);//row of matrix, low, high and row number - 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; + bool sim; + MothurOut* m; }; -#endif \ No newline at end of file +#endif