X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=clusterclassic.h;h=eaccb273b4980b297e1ad4d9f419d6494e37a120;hp=9a896f28df1a51d29978914e6922ce924b083e86;hb=b206f634aae1b4ce13978d203247fb64757d5482;hpb=26b30b0881a37665b18746d2851607c494e8ccc0 diff --git a/clusterclassic.h b/clusterclassic.h index 9a896f2..eaccb27 100644 --- a/clusterclassic.h +++ b/clusterclassic.h @@ -1,12 +1,12 @@ -#ifndef CLUSTER_H -#define CLUSTER_H +#ifndef CLUSTERCLASSIC_H +#define CLUSTERCLASSIC_H -#include "mothur.h" #include "mothurout.h" #include "listvector.hpp" -#include "globaldata.hpp" #include "rabundvector.hpp" +#include "nameassignment.hpp" +#include "counttable.h" /* * clusterclassic.h @@ -21,14 +21,15 @@ class ClusterClassic { public: - ClusterClassic(float, string); + ClusterClassic(float, string, bool); int readPhylipFile(string, NameAssignment*); + int readPhylipFile(string, CountTable*); void update(double&); double getSmallDist() { return smallDist; } int getNSeqs() { return nseqs; } ListVector* getListVector() { return list; } RAbundVector* getRAbundVector() { return rabund; } - string getTag(); + string getTag() { return tag; } void setMapWanted(bool m); map getSeqtoBin() { return seq2Bin; } @@ -42,25 +43,24 @@ private: struct colDist { int col; int row; - double dist; + float dist; colDist(int r, int c, double d) : row(r), col(c), dist(d) {} }; RAbundVector* rabund; ListVector* list; - vector< vector > dMatrix; + vector< vector > dMatrix; //vector rowSmallDists; int smallRow; int smallCol, nseqs; double smallDist; - bool mapWanted; + bool mapWanted, sim; double cutoff, aboveCutoff; map seq2Bin; - string method; + string method, tag; MothurOut* m; - GlobalData* globaldata; }; #endif