]> git.donarmstrong.com Git - mothur.git/blobdiff - hcluster.h
added groups option to read.otu, added qtrim option to trim.seqs, fixed bug in get...
[mothur.git] / hcluster.h
index ff02b1caff85b8fc48757d3d2b018b3b997ff7f4..6b2862b7919b8d74e7a28a0442ef10bceb863db0 100644 (file)
 
 class RAbundVector;
 class ListVector;
-/************************************************************/
-struct clusterNode {
-       int numSeq;
-       int parent;
-       int smallChild; //used to make linkTable work with list and rabund. represents bin number of this cluster node
-       clusterNode(int num, int par, int kid) : numSeq(num), parent(par), smallChild(kid) {};
-};
 
 /***********************************************************************/
 class HCluster {
        
 public:
        HCluster(RAbundVector*, ListVector*);
+       ~HCluster(){};
     bool update(int, int, float);
        //string getTag();