]> git.donarmstrong.com Git - mothur.git/blobdiff - treenode.h
working on chimeras
[mothur.git] / treenode.h
index d6163a2b1275f9816a576659019d178005042e6d..c25806b7445cb90cc97ae45ab33d917a3981257e 100644 (file)
@@ -21,7 +21,7 @@ class Node  {
                ~Node() { pGroups.clear(); pcount.clear(); };
                
                void setName(string);
-               void setGroup(string);  
+               void setGroup(vector<string>);  
                void setBranchLength(float);
                void setLabel(float);
                void setParent(int);
@@ -30,7 +30,7 @@ class Node  {
                void setLengthToLeaves(float);
                
                string getName();
-               string getGroup();  
+               vector<string> getGroup();  
                float getBranchLength();
                float getLengthToLeaves();
                float getLabel();
@@ -52,7 +52,7 @@ class Node  {
                        
        private:
                string                  name;
-               string                  group;
+               vector<string>  group; 
                float                   branchLength, length2leaf, label;
                int                             parent;
                int                             lchild;