]> git.donarmstrong.com Git - mothur.git/blob - readtree.cpp
fixed bug in read tree
[mothur.git] / readtree.cpp
1 /*
2  *  readtree.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 "readtree.h"
11
12 /***********************************************************************/
13 ReadTree::ReadTree() {
14         try {
15                 globaldata = GlobalData::getInstance();
16                 globaldata->gTree.clear();
17         }
18         catch(exception& e) {
19                 cout << "Standard Error: " << e.what() << " has occurred in the ReadTree class Function ReadTree. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
20                 exit(1);
21         }
22         catch(...) {
23                 cout << "An unknown error has occurred in the ReadTree class function ReadTree. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
24                 exit(1);
25         }               
26 }
27 /***********************************************************************/
28 int ReadTree::readSpecialChar(istream& f, char c, string name) {
29     try {
30         
31                 gobble(f);
32                 char d = f.get();
33         
34                 if(d == EOF){
35                         cerr << "Error: Input file ends prematurely, expecting a " << name << "\n";
36                         exit(1);
37                 }
38                 if(d != c){
39                         cerr << "Error: Expected " << name << " in input file.  Found " << d << ".\n";
40                         exit(1);
41                 }
42                 if(d == ')' && f.peek() == '\n'){
43                         gobble(f);
44                 }       
45                 return d;
46         }
47         catch(exception& e) {
48                 cout << "Standard Error: " << e.what() << " has occurred in the ReadTree class Function readSpecialChar. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
49                 exit(1);
50         }
51         catch(...) {
52                 cout << "An unknown error has occurred in the ReadTree class function readSpecialChar. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
53                 exit(1);
54         }               
55 }
56 /**************************************************************************************************/
57
58 int ReadTree::readNodeChar(istream& f) {
59         try {
60 //              while(isspace(d=f.get()))               {;}
61                 gobble(f);
62                 char d = f.get();
63
64                 if(d == EOF){
65                         cerr << "Error: Input file ends prematurely, expecting a left parenthesis\n";
66                         exit(1);
67                 }
68                 return d;
69         }
70         catch(exception& e) {
71                 cout << "Standard Error: " << e.what() << " has occurred in the ReadTree class Function readNodeChar. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
72                 exit(1);
73         }
74         catch(...) {
75                 cout << "An unknown error has occurred in the ReadTree class function readNodeChar. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
76                 exit(1);
77         }               
78 }
79
80 /**************************************************************************************************/
81
82 float ReadTree::readBranchLength(istream& f) {
83     try {
84                 float b;
85         
86                 if(!(f >> b)){
87                         cerr << "Error: Missing branch length in input tree.\n";
88                         exit(1);
89                 }
90                 gobble(f);
91                 return b;
92         }
93         catch(exception& e) {
94                 cout << "Standard Error: " << e.what() << " has occurred in the ReadTree class Function readBranchLength. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
95                 exit(1);
96         }
97         catch(...) {
98                 cout << "An unknown error has occurred in the ReadTree class function readBranchLength. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
99                 exit(1);
100         }               
101 }
102
103
104 /***********************************************************************/
105 /***********************************************************************/
106
107
108 //Child Classes Below
109
110 /***********************************************************************/
111 /***********************************************************************/
112 //This class reads a file in Newick form and stores it in a tree.
113
114 void ReadNewickTree::read() {
115         try {
116                 int c;
117                 int comment = 0;
118                 
119                 //if you are not a nexus file 
120                 if ((c = filehandle.peek()) != '#') {  
121                         while((c = filehandle.peek()) != EOF) { 
122                                 //make new tree
123                                 T = new Tree(); 
124                                 numNodes = T->getNumNodes();
125                                 numLeaves = T->getNumLeaves();
126                                 
127                                 readTreeString(); 
128                                 
129                                 //save trees for later commands
130                                 globaldata->gTree.push_back(T); 
131                                 gobble(filehandle);
132                         }
133                 //if you are a nexus file
134                 }else if ((c = filehandle.peek()) == '#') {
135                         nexusTranslation();  //reads file through the translation and updates treemap
136                         while((c = filehandle.peek()) != EOF) { 
137                                 // get past comments
138                                 while ((c = filehandle.peek()) != EOF) {        
139                                         if(holder == "[" || holder == "[!"){
140                                                 comment = 1;
141                                         }
142                                         if(holder == "]"){
143                                                 comment = 0;
144                                         }
145                                         if((holder == "tree" || holder == "end;") && comment != 1){ holder = ""; comment = 0; break;}
146                                         filehandle >> holder;
147                                 }
148                         
149                                 //pass over the "tree rep.6878900 = "
150                                 while (((c = filehandle.get()) != '(') && ((c = filehandle.peek()) != EOF) ) {;}
151                                         
152                                 if (c == EOF ) { break; }
153                                 filehandle.putback(c);  //put back first ( of tree.
154                                 
155                                 //make new tree
156                                 T = new Tree(); 
157                                 numNodes = T->getNumNodes();
158                                 numLeaves = T->getNumLeaves();
159                                 
160                                 //read tree info
161                                 readTreeString(); 
162                                  
163                                 //save trees for later commands
164                                 globaldata->gTree.push_back(T); 
165                         }
166                 }
167         }
168         catch(exception& e) {
169                 cout << "Standard Error: " << e.what() << " has occurred in the ReadNewickTree class Function read. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
170                 exit(1);
171         }
172         catch(...) {
173                 cout << "An unknown error has occurred in the ReadNewickTree class function read. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
174                 exit(1);
175         }               
176 }
177 /**************************************************************************************************/
178 //This function read the file through the translation of the sequences names and updates treemap.
179 void ReadNewickTree::nexusTranslation() {
180         try {
181                 
182                 holder = "";
183                 int numSeqs = globaldata->gTreemap->getNumSeqs(); //must save this some when we clear old names we can still know how many sequences there were
184                 int comment = 0;
185                 
186                 // get past comments
187                 while(holder != "translate" && holder != "Translate"){  
188                         if(holder == "[" || holder == "[!"){
189                                 comment = 1;
190                         }
191                         if(holder == "]"){
192                                 comment = 0;
193                         }
194                         filehandle >> holder; 
195                         if(holder == "tree" && comment != 1){return;}
196                 }
197                 
198                 //update treemap
199                 globaldata->gTreemap->namesOfSeqs.clear();
200                 for(int i=0;i<numSeqs;i++){
201                         string number, name;
202                         filehandle >> number;
203                         filehandle >> name;
204                         name.erase(name.end()-1);  //erase the comma
205                         //insert new one with new name
206                         globaldata->gTreemap->treemap[toString(number)].groupname = globaldata->gTreemap->treemap[name].groupname;
207                         globaldata->gTreemap->treemap[toString(number)].vectorIndex = globaldata->gTreemap->treemap[name].vectorIndex;
208                         //erase old one.  so treemap[sarah].groupnumber is now treemap[1].groupnumber. if number is 1 and name is sarah.
209                         globaldata->gTreemap->treemap.erase(name);
210                         globaldata->gTreemap->namesOfSeqs.push_back(number);
211                 }
212         }
213         catch(exception& e) {
214                 cout << "Standard Error: " << e.what() << " has occurred in the ReadNewickTree class Function nexus. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
215                 exit(1);
216         }
217         catch(...) {
218                 cout << "An unknown error has occurred in the ReadNewickTree class function nexus. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
219                 exit(1);
220         }               
221 }
222
223 /**************************************************************************************************/
224 void ReadNewickTree::readTreeString() {
225         try {
226                 
227                 int n = 0;
228                 int lc, rc; 
229                 
230                 int rooted = 0;
231         
232                 int ch = filehandle.peek();     
233                 
234                 if(ch == '('){
235                         n = numLeaves;  //number of leaves / sequences, we want node 1 to start where the leaves left off
236
237                         lc = readNewickInt(filehandle, n, T);
238                 
239                         if(filehandle.peek()==','){                                                     
240                                 readSpecialChar(filehandle,',',"comma");
241                         }
242                         // ';' means end of tree.                                                                                               
243                         else if((ch=filehandle.peek())==';' || ch=='['){                
244                                 rooted = 1;                                                                     
245                         }                                                                                               
246                         if(rooted != 1){                                                                
247                                 rc = readNewickInt(filehandle, n, T);
248                                 if(filehandle.peek() == ')'){                                   
249                                         readSpecialChar(filehandle,')',"right parenthesis");
250                                 }                                                                                       
251                         }                                                                                               
252                 }
253                 //note: treeclimber had the code below added - not sure why?
254                 else{
255                         filehandle.putback(ch);
256                         char name[MAX_LINE];
257                         filehandle.get(name, MAX_LINE,'\n');
258                         SKIPLINE(filehandle, ch);
259                 
260                         n = T->getIndex(name);
261
262                         if(n!=0){
263                                 cerr << "Internal error: The only taxon is not taxon 0.\n";
264                                 exit(1);
265                         }
266                         lc = rc = -1;
267                 } 
268                 
269                 while((ch=filehandle.get())!=';'){;}                                            
270                 if(rooted != 1){                                                                        
271                         T->tree[n].setChildren(lc,rc);
272                         T->tree[n].setBranchLength(0);
273                         T->tree[n].setParent(-1);
274                         if(lc!=-1){             T->tree[lc].setParent(n);               }
275                         if(rc!=-1){             T->tree[rc].setParent(n);               }
276                 }
277         
278         }
279         catch(exception& e) {
280                 cout << "Standard Error: " << e.what() << " has occurred in the ReadNewickTree class Function readTreeString. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
281                 exit(1);
282         }
283         catch(...) {
284                 cout << "An unknown error has occurred in the ReadNewickTree class function readTreeString. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
285                 exit(1);
286         }               
287
288 }
289 /**************************************************************************************************/
290
291 int ReadNewickTree::readNewickInt(istream& f, int& n, Tree* T) {
292         try {
293                 int c = readNodeChar(f);
294     
295                 if(c == '('){
296                         int lc = readNewickInt(f, n, T);
297                         readSpecialChar(f,',',"comma");
298
299                         int rc = readNewickInt(f, n, T);                
300                         if(f.peek()==')'){      
301                                 readSpecialChar(f,')',"right parenthesis");                                     
302                         }                       
303                 
304                         if(f.peek() == ':'){                                                                          
305                                 readSpecialChar(f,':',"colon");                                                 
306                                 if(n >= numNodes){      cerr << "Error: Too many nodes in input tree\n";  exit(1); }
307                                 T->tree[n].setBranchLength(readBranchLength(f));
308                         }else{T->tree[n].setBranchLength(0.0); }                                                
309                 
310                         T->tree[n].setChildren(lc,rc);
311                         T->tree[lc].setParent(n);
312                         T->tree[rc].setParent(n);
313                 
314                         return n++;
315                 }else{
316                         f.putback(c);
317                         string name = "";
318                         char d=f.get();
319                         while(d != ':' && d != ',' && d!=')' && d!='\n'){                                       
320                                 name += d;
321                                 d=f.get();
322                         }
323                 
324                         int blen = 0;
325                         if(d == ':')    {               blen = 1;                       }               
326                 
327                         f.putback(d);
328                 
329                         //set group info
330                         string group = globaldata->gTreemap->getGroup(name);
331                         
332                         //find index in tree of name
333                         int n1 = T->getIndex(name);
334                         
335                         //adds sequence names that are not in group file to the "xxx" group
336                         if(n1 == -1) {
337                                 cerr << "Name: " << name << " not found in your groupfile.. \n"; exit(1);
338                                 
339                                 globaldata->gTreemap->namesOfSeqs.push_back(name);
340                                 globaldata->gTreemap->treemap[name].groupname = "xxx";
341                                 globaldata->gTreemap->treemap[name].vectorIndex = (globaldata->gTreemap->namesOfSeqs.size() - 1);
342                                 
343                                 map<string, int>::iterator it;
344                                 it = globaldata->gTreemap->seqsPerGroup.find("xxx");
345                                 if (it == globaldata->gTreemap->seqsPerGroup.end()) { //its a new group
346                                         globaldata->gTreemap->namesOfGroups.push_back("xxx");
347                                         globaldata->gTreemap->seqsPerGroup["xxx"] = 1;
348                                 }else {
349                                         globaldata->gTreemap->seqsPerGroup["xxx"]++;
350                                 }
351                                 
352                                 //find index in tree of name
353                                 n1 = T->getIndex(name);
354                                 group = "xxx";
355                                 numLeaves++;
356                                 numNodes = 2*numLeaves - 1;
357                                 //T->resetTree();
358                         }
359                         
360                         T->tree[n1].setGroup(group);
361                         T->tree[n1].setChildren(-1,-1);
362                 
363                         if(blen == 1){  
364                                 f.get();                
365                                 T->tree[n1].setBranchLength(readBranchLength(f));
366                         }else{
367                                 T->tree[n1].setBranchLength(0.0);
368                         }
369                 
370                         while((c=f.get())!=0 && (c != ':' && c != ',' && c!=')') )              {;}             
371                         f.putback(c);
372                 
373                         return n1;
374                 }
375         }
376         catch(exception& e) {
377                 cout << "Standard Error: " << e.what() << " has occurred in the ReadNewickTree class Function readNewickInt. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
378                 exit(1);
379         }
380         catch(...) {
381                 cout << "An unknown error has occurred in the ReadNewickTree class function readNewickInt. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
382                 exit(1);
383         }               
384 }
385 /**************************************************************************************************/
386 /**************************************************************************************************/
387