]> git.donarmstrong.com Git - mothur.git/blob - treenode.h
fixed memory leak in parsimony calculator and added progress bars to parsimony and...
[mothur.git] / treenode.h
1 #ifndef TREENODE_H
2 #define TREENODE_H
3
4 /*
5  *  treenode.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 1/23/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 using namespace std;
14
15 #include "mothur.h"
16
17 /* This class represents a node on a tree. */
18
19
20 class Node  {
21         public:
22                 Node();  //pass it the sequence name
23                 ~Node() { pGroups.clear(); pcount.clear(); };
24                 
25                 void setName(string);
26                 void setGroup(string);  
27                 void setBranchLength(float);
28                 void setParent(int);
29                 void setChildren(int, int);             //leftchild, rightchild
30                 void setIndex(int);
31                 
32                 string getName();
33                 string getGroup();  
34                 float getBranchLength();
35                 int getParent();
36                 int getLChild();
37                 int getRChild();
38                 int getIndex();
39                 void printNode();   //prints out the name and the branch length
40                 
41                 
42                 //pGroup is the parsimony group info.  i.e. for a leaf node it would contain 1 enter pGroup["groupname"] = 1;
43                 //but for a branch node it may contain several entries so if the nodes children are from different groups it
44                 //would have at least two entries pgroup["groupnameOfLeftChild"] = 1, pgroup["groupnameOfRightChild"] = 1.
45                 //pCount is the nodes descendant group infomation.  i.e. pCount["black"] = 20 would mean that 20 of the nodes 
46                 //descendant are from group black.
47
48                 map<string, int> pGroups; //leaf nodes will only have 1 group, but branch nodes may have multiple groups.
49                 map<string, int> pcount;        
50                         
51         private:
52                 string                  name;
53                 string                  group;
54                 float                   branchLength;
55                 int                             parent;
56                 int                             lchild;
57                 int                             rchild;
58                 int                             vectorIndex;
59 };              
60
61 #endif