]> git.donarmstrong.com Git - mothur.git/blobdiff - hcluster.h
fixed bug with hcluster
[mothur.git] / hcluster.h
index 2688c191d7d364a980d51727a3d82f3b929cb45e..ff02b1caff85b8fc48757d3d2b018b3b997ff7f4 100644 (file)
@@ -19,7 +19,7 @@ class ListVector;
 struct clusterNode {
        int numSeq;
        int parent;
-       int smallChild; //used to make linkTable work with list and rabund
+       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) {};
 };