]> git.donarmstrong.com Git - mothur.git/blob - tree.cpp
642c6658739dd5252b2d61083ce6af2b872785ec
[mothur.git] / tree.cpp
1 /*
2  *  tree.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 1/22/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "tree.h"
11
12
13 /*****************************************************************/
14 Tree::Tree() {
15         try {
16         
17                 globaldata = GlobalData::getInstance();
18                 numLeaves = globaldata->gTreemap->getNumSeqs();
19                 numNodes = 2*numLeaves - 1;
20                 
21                 tree.resize(numNodes);
22
23                 //initialize tree with correct number of nodes, name and group info.
24                 for (int i = 0; i < numNodes; i++) {
25                         //initialize leaf nodes
26                         if (i <= (numLeaves-1)) {
27                                 tree[i].setName(globaldata->gTreemap->namesOfSeqs[i]);
28                                 tree[i].setGroup(globaldata->gTreemap->getGroup(globaldata->gTreemap->namesOfSeqs[i]));
29                                 //the node knows its index
30                                 tree[i].setIndex(i);
31                                 //set pcount and pGroup for groupname to 1.
32                                 tree[i].pcount[globaldata->gTreemap->getGroup(globaldata->gTreemap->namesOfSeqs[i])] = 1;
33                                 tree[i].pGroups[globaldata->gTreemap->getGroup(globaldata->gTreemap->namesOfSeqs[i])] = 1;
34                                 //Treemap knows name, group and index to speed up search
35                                 globaldata->gTreemap->setIndex(globaldata->gTreemap->namesOfSeqs[i], i);
36         
37                         //intialize non leaf nodes
38                         }else if (i > (numLeaves-1)) {
39                                 tree[i].setName("");
40                                 tree[i].setGroup("");
41                                 //the node knows its index
42                                 tree[i].setIndex(i);
43                         }
44                 }
45         }
46         catch(exception& e) {
47                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function Tree. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
48                 exit(1);
49         }
50         catch(...) {
51                 cout << "An unknown error has occurred in the Tree class function Tree. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
52                 exit(1);
53         }               
54 }
55
56 /*****************************************************************/
57
58 int Tree::getIndex(string searchName) {
59         try {
60                 //Treemap knows name, group and index to speed up search
61                 // getIndex function will return the vector index or -1 if seq is not found.
62                 int index = globaldata->gTreemap->getIndex(searchName);
63                 return index;
64                 
65         }
66         catch(exception& e) {
67                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function getIndex. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
68                 exit(1);
69         }
70         catch(...) {
71                 cout << "An unknown error has occurred in the Tree class function getIndex. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
72                 exit(1);
73         }               
74 }
75 /*****************************************************************/
76
77 void Tree::setIndex(string searchName, int index) {
78         try {
79                 //set index in treemap
80                 globaldata->gTreemap->setIndex(searchName, index);
81         }
82         catch(exception& e) {
83                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function setIndex. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
84                 exit(1);
85         }
86         catch(...) {
87                 cout << "An unknown error has occurred in the Tree class function setIndex. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
88                 exit(1);
89         }               
90 }
91 /*****************************************************************/
92 void Tree::assembleTree() {
93         try {
94                 //build the pGroups in non leaf nodes to be used in the parsimony calcs.
95                 for (int i = numLeaves; i < numNodes; i++) {
96                         tree[i].pGroups = (mergeGroups(i));
97                         tree[i].pcount = (mergeGcounts(i));
98                 }
99         }
100         catch(exception& e) {
101                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function assembleTree. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
102                 exit(1);
103         }
104         catch(...) {
105                 cout << "An unknown error has occurred in the Tree class function assembleTree. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
106                 exit(1);
107         }               
108 }
109 /*****************************************************************/
110 void Tree::getCopy(Tree* copy) {
111         try {
112         
113                 //for each node in the tree copy its info
114                 for (int i = 0; i < numNodes; i++) {
115                         //copy name
116                         tree[i].setName(copy->tree[i].getName());
117                 
118                         //copy group
119                         tree[i].setGroup(copy->tree[i].getGroup());
120                         
121                         //copy branch length
122                         tree[i].setBranchLength(copy->tree[i].getBranchLength());
123                 
124                         //copy parent
125                         tree[i].setParent(copy->tree[i].getParent());
126                 
127                         //copy children
128                         tree[i].setChildren(copy->tree[i].getLChild(), copy->tree[i].getRChild());
129                 
130                         //copy index in node and tmap
131                         tree[i].setIndex(copy->tree[i].getIndex());
132                         setIndex(copy->tree[i].getName(), getIndex(copy->tree[i].getName()));
133                         
134                         //copy pGroups
135                         tree[i].pGroups = copy->tree[i].pGroups;
136                 
137                         //copy pcount
138                         tree[i].pcount = copy->tree[i].pcount;
139                 }
140         }
141         catch(exception& e) {
142                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function getCopy. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
143                 exit(1);
144         }
145         catch(...) {
146                 cout << "An unknown error has occurred in the Tree class function getCopy. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
147                 exit(1);
148         }               
149 }
150 /*****************************************************************/
151 //returns a map with a groupname and the number of times that group was seen in the children
152 //for instance if your children are white and black then it would return a map with 2 entries
153 // p[white] = 1 and p[black] = 1.  Now go up a level and merge that with a node who has p[white] = 1
154 //and you get p[white] = 2, p[black] = 1, but you erase the p[black] because you have a p value higher than 1.
155
156 map<string, int> Tree::mergeGroups(int i) {
157         try {
158                 int lc = tree[i].getLChild();
159                 int rc = tree[i].getRChild();
160                 
161                 //set parsimony groups to left child
162                 map<string,int> parsimony = tree[lc].pGroups;
163                 
164                 int maxPars = 1;
165
166                 //look at right child groups and update maxPars if right child has something higher for that group.
167                 for(it=tree[rc].pGroups.begin();it!=tree[rc].pGroups.end();it++){
168                         it2 = parsimony.find(it->first);
169                         if (it2 != parsimony.end()) {
170                                 parsimony[it->first]++;
171                         }else {
172                                 parsimony[it->first] = 1;
173                         }
174                         
175                         if(parsimony[it->first] > maxPars){
176                                 maxPars = parsimony[it->first];
177                         }
178                 }
179         
180                 // this is true if right child had a greater parsimony for a certain group
181                 if(maxPars > 1){
182                         //erase all the groups that are only 1 because you found something with 2.
183                         for(it=parsimony.begin();it!=parsimony.end();it++){
184                                 if(it->second == 1){
185                                         parsimony.erase(it->first);
186                                         it--;
187                                 }
188                         }
189                         //set one remaining groups to 1
190                         //so with our above example p[white] = 2 would be left and it would become p[white] = 1
191                         for(it=parsimony.begin();it!=parsimony.end();it++){
192                                 parsimony[it->first] = 1;
193                         }
194                 
195                 }
196         
197                 return parsimony;
198         }
199         catch(exception& e) {
200                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function mergeGroups. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
201                 exit(1);
202         }
203         catch(...) {
204                 cout << "An unknown error has occurred in the Tree class function mergeGroups. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
205                 exit(1);
206         }               
207 }
208 /*****************************************************************/
209 //returns a map with a groupname and the number of times that group was seen in the children
210 //for instance if your children are white and black then it would return a map with 2 entries
211 // p[white] = 1 and p[black] = 1.  Now go up a level and merge that with a node who has p[white] = 1
212 //and you get p[white] = 2, p[black] = 1, but you erase the p[black] because you have a p value higher than 1.
213
214 map<string, int> Tree::mergeUserGroups(int i, vector<string> g) {
215         try {
216         
217                 int lc = tree[i].getLChild();
218                 int rc = tree[i].getRChild();
219                 
220                 //loop through nodes groups removing the ones the user doesn't want
221                 for (it = tree[lc].pGroups.begin(); it != tree[lc].pGroups.end(); it++) {
222                         if (inUsersGroups(it->first, g) != true) { tree[lc].pGroups.erase(it->first); }
223                 }
224                 
225                 //loop through nodes groups removing the ones the user doesn't want
226                 for (it = tree[rc].pGroups.begin(); it != tree[rc].pGroups.end(); it++) {
227                         if (inUsersGroups(it->first, g) != true) { tree[rc].pGroups.erase(it->first); }
228                 }
229
230                 //set parsimony groups to left child
231                 map<string,int> parsimony = tree[lc].pGroups;
232                 
233                 int maxPars = 1;
234
235                 //look at right child groups and update maxPars if right child has something higher for that group.
236                 for(it=tree[rc].pGroups.begin();it!=tree[rc].pGroups.end();it++){
237                         it2 = parsimony.find(it->first);
238                         if (it2 != parsimony.end()) {
239                                 parsimony[it->first]++;
240                         }else {
241                                 parsimony[it->first] = 1;
242                         }
243                         
244                         if(parsimony[it->first] > maxPars){
245                                 maxPars = parsimony[it->first];
246                         }
247                 }
248         
249                 // this is true if right child had a greater parsimony for a certain group
250                 if(maxPars > 1){
251                         //erase all the groups that are only 1 because you found something with 2.
252                         for(it=parsimony.begin();it!=parsimony.end();it++){
253                                 if(it->second == 1){
254                                         parsimony.erase(it->first);
255                                         it--;
256                                 }
257                         }
258                         //set one remaining groups to 1
259                         //so with our above example p[white] = 2 would be left and it would become p[white] = 1
260                         for(it=parsimony.begin();it!=parsimony.end();it++){
261                                 parsimony[it->first] = 1;
262                         }
263                 
264                 }
265         
266                 return parsimony;
267         }
268         catch(exception& e) {
269                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function mergeGroups. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
270                 exit(1);
271         }
272         catch(...) {
273                 cout << "An unknown error has occurred in the Tree class function mergeGroups. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
274                 exit(1);
275         }               
276 }
277
278
279 /**************************************************************************************************/
280
281 map<string,int> Tree::mergeGcounts(int position) {
282         try{
283                 map<string,int>::iterator pos;
284         
285                 int lc = tree[position].getLChild();
286                 int rc = tree[position].getRChild();
287         
288                 map<string,int> sum = tree[lc].pcount;
289     
290                 for(it=tree[rc].pcount.begin();it!=tree[rc].pcount.end();it++){
291                         sum[it->first] += it->second;
292                 }
293                 return sum;
294         }
295         catch(exception& e) {
296                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function mergeGcounts. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
297                 exit(1);
298         }
299         catch(...) {
300                 cout << "An unknown error has occurred in the Tree class function mergeGcounts. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
301                 exit(1);
302         }               
303 }
304 /**************************************************************************************************/
305
306 void Tree::randomLabels(vector<string> g) {
307         try {
308                 
309                 for(int i = 0; i < numLeaves; i++){
310                         int z;
311                         //get random index to switch with
312                         z = int((float)(i+1) * (float)(rand()) / ((float)RAND_MAX+1.0));        
313                         
314                         //you only want to randomize the nodes that are from a group the user wants analyzed, so
315                         //if either of the leaf nodes you are about to switch are not in the users groups then you don't want to switch them.
316                         bool treez, treei;
317                 
318                         treez = inUsersGroups(tree[z].getGroup(), g);
319                         treei = inUsersGroups(tree[i].getGroup(), g);
320                         
321                         if ((treez == true) && (treei == true)) {
322                                 //switches node i and node z's info.
323                                 map<string,int> lib_hold = tree[z].pGroups;
324                                 tree[z].pGroups = (tree[i].pGroups);
325                                 tree[i].pGroups = (lib_hold);
326                                 
327                                 string zgroup = tree[z].getGroup();
328                                 tree[z].setGroup(tree[i].getGroup());
329                                 tree[i].setGroup(zgroup);
330                                 
331                                 string zname = tree[z].getName();
332                                 tree[z].setName(tree[i].getName());
333                                 tree[i].setName(zname);
334                                 
335                                 map<string,int> gcount_hold = tree[z].pcount;
336                                 tree[z].pcount = (tree[i].pcount);
337                                 tree[i].pcount = (gcount_hold);
338                         }
339                 }
340         }
341         catch(exception& e) {
342                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function randomLabels. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
343                 exit(1);
344         }
345         catch(...) {
346                 cout << "An unknown error has occurred in the Tree class function randomLabels. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
347                 exit(1);
348         }               
349 }
350 /**************************************************************************************************/
351
352 void Tree::randomLabels(string groupA, string groupB) {
353         try {
354                 int numSeqsA = globaldata->gTreemap->seqsPerGroup[groupA];
355                 int numSeqsB = globaldata->gTreemap->seqsPerGroup[groupB];
356
357                 vector<string> randomGroups(numSeqsA+numSeqsB, groupA);
358                 for(int i=numSeqsA;i<randomGroups.size();i++){
359                         randomGroups[i] = groupB;
360                 }
361                 random_shuffle(randomGroups.begin(), randomGroups.end());
362                                 
363                 int randomCounter = 0;                          
364                 for(int i=0;i<numLeaves;i++){
365                         if(tree[i].getGroup() == groupA || tree[i].getGroup() == groupB){
366                                 tree[i].setGroup(randomGroups[randomCounter]);
367                                 tree[i].pcount.clear();
368                                 tree[i].pcount[randomGroups[randomCounter]] = 1;
369                                 tree[i].pGroups.clear();
370                                 tree[i].pGroups[randomGroups[randomCounter]] = 1;
371                                 randomCounter++;
372                         }
373                 }
374         }               
375         catch(exception& e) {
376                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function randomLabels. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
377                 exit(1);
378         }
379         catch(...) {
380                 cout << "An unknown error has occurred in the Tree class function randomLabels. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
381                 exit(1);
382         }               
383 }
384 /**************************************************************************************************/
385 void Tree::randomBlengths()  {
386         try {
387                 for(int i=numNodes-1;i>=0;i--){
388                         int z = int((float)(i+1) * (float)(rand()) / ((float)RAND_MAX+1.0));    
389                 
390                         float bl_hold = tree[z].getBranchLength();
391                         tree[z].setBranchLength(tree[i].getBranchLength());
392                         tree[i].setBranchLength(bl_hold);
393                 }
394         }
395         catch(exception& e) {
396                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function randomBlengths. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
397                 exit(1);
398         }
399         catch(...) {
400                 cout << "An unknown error has occurred in the Tree class function randomBlengths. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
401                 exit(1);
402         }               
403 }
404 /*************************************************************************************************/
405 void Tree::assembleRandomUnifracTree(vector<string> g) {
406         randomLabels(g);
407         assembleTree();
408 }
409 /*************************************************************************************************/
410 void Tree::assembleRandomUnifracTree(string groupA, string groupB) {
411         randomLabels(groupA, groupB);
412         assembleTree();
413 }
414
415 /*************************************************************************************************/
416 //for now it's just random topology but may become random labels as well later that why this is such a simple function now...
417 void Tree::assembleRandomTree() {
418         randomTopology();
419         assembleTree();
420 }
421 /**************************************************************************************************/
422
423 void Tree::randomTopology() {
424         try {
425                 for(int i=0;i<numNodes;i++){
426                         tree[i].setParent(-1);
427                 }
428                 for(int i=numLeaves;i<numNodes;i++){
429                         tree[i].setChildren(-1, -1); 
430                 }
431     
432                 for(int i=numLeaves;i<numNodes;i++){
433                         int escape =0;
434                         int rnd_index1, rnd_index2;
435                         while(escape == 0){
436                                 rnd_index1 = (int)(((double)rand() / (double) RAND_MAX)*i);
437                                 if(tree[rnd_index1].getParent() == -1){escape = 1;}
438                         }
439                 
440                         escape = 0;
441                         while(escape == 0){
442                                 rnd_index2 = (int)(((double)rand() / (double) RAND_MAX)*i);
443                                 if(rnd_index2 != rnd_index1 && tree[rnd_index2].getParent() == -1){
444                                         escape = 1;
445                                 }               
446                         }
447                 
448                         tree[i].setChildren(rnd_index1,rnd_index2);
449                         tree[i].setParent(-1);
450                         tree[rnd_index1].setParent(i);
451                         tree[rnd_index2].setParent(i);
452                 }
453         }
454         catch(exception& e) {
455                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function randomTopology. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
456                 exit(1);
457         }
458         catch(...) {
459                 cout << "An unknown error has occurred in the Tree class function randomTopology. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
460                 exit(1);
461         }               
462 }
463
464 /*****************************************************************/
465 // This prints out the tree in Newick form.
466 void Tree::createNewickFile(string f) {
467         try {
468                 int root = findRoot();
469                 //filename = getRootName(globaldata->getTreeFile()) + "newick";
470                 filename = f;
471                 openOutputFile(filename, out);
472                 
473                 printBranch(root);
474                 
475                 // you are at the end of the tree
476                 out << ";" << endl;
477                 out.close();
478         }
479         catch(exception& e) {
480                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function createNewickFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
481                 exit(1);
482         }
483         catch(...) {
484                 cout << "An unknown error has occurred in the Tree class function createNewickFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
485                 exit(1);
486         }               
487 }
488
489 /*****************************************************************/
490 //This function finds the index of the root node.
491
492 int Tree::findRoot() {
493         try {
494                 for (int i = 0; i < numNodes; i++) {
495                         //you found the root
496                         if (tree[i].getParent() == -1) { return i; }
497                 }
498                 return -1;
499         }
500         catch(exception& e) {
501                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function findRoot. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
502                 exit(1);
503         }
504         catch(...) {
505                 cout << "An unknown error has occurred in the Tree class function findRoot. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
506                 exit(1);
507         }               
508 }
509
510 /*****************************************************************/
511 void Tree::printBranch(int node) {
512         try {
513                 
514                 // you are not a leaf
515                 if (tree[node].getLChild() != -1) {
516                         out << "(";
517                         printBranch(tree[node].getLChild());
518                         out << ",";
519                         printBranch(tree[node].getRChild());
520                         out << ")";
521                 }else { //you are a leaf
522                         out << tree[node].getGroup() << ":" << tree[node].getBranchLength();
523                 }
524                 
525         }
526         catch(exception& e) {
527                 cout << "Standard Error: " << e.what() << " has occurred in the Tree class Function printBranch. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
528                 exit(1);
529         }
530         catch(...) {
531                 cout << "An unknown error has occurred in the Tree class function printBranch. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
532                 exit(1);
533         }               
534 }
535
536 /*****************************************************************/
537
538 void Tree::printTree() {
539         
540         for(int i=0;i<numNodes;i++){
541                 cout << i << '\t';
542                 tree[i].printNode();
543         }
544         
545 }
546
547 /*****************************************************************/
548
549