]> git.donarmstrong.com Git - mothur.git/blobdiff - mothur.h
added groups option to read.otu, added qtrim option to trim.seqs, fixed bug in get...
[mothur.git] / mothur.h
index 84dbdb3dee2879829909b38654c80057d9d5fdb5..23b9f189c992f97e2e9a47823cacce62db363696 100644 (file)
--- a/mothur.h
+++ b/mothur.h
@@ -78,6 +78,14 @@ struct ThreadNode {
        IntNode* right;
 };
 
+/************************************************************/
+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) {};
+};
+
 /***********************************************************************/
 
 // snagged from http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.2