]> git.donarmstrong.com Git - mothur.git/blob - bayesian.cpp
changed confidence scores calculation in bayesian
[mothur.git] / bayesian.cpp
1 /*
2  *  bayesian.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 11/3/09.
6  *  Copyright 2009 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "bayesian.h"
11 #include "kmer.hpp"
12 #include "phylosummary.h"
13
14 /**************************************************************************************************/
15 Bayesian::Bayesian(string tfile, string tempFile, string method, int ksize, int cutoff, int i) : 
16 Classify(), kmerSize(ksize), confidenceThreshold(cutoff), iters(i)  {
17         try {
18                                         
19                 /************calculate the probablity that each word will be in a specific taxonomy*************/
20                 string phyloTreeName = tfile.substr(0,tfile.find_last_of(".")+1) + "tree.train";
21                 string probFileName = tfile.substr(0,tfile.find_last_of(".")+1) + tempFile.substr(0,tempFile.find_last_of(".")+1) + char('0'+ kmerSize) + "mer.prob";
22                 string probFileName2 = tfile.substr(0,tfile.find_last_of(".")+1) + tempFile.substr(0,tempFile.find_last_of(".")+1) + char('0'+ kmerSize) + "mer.numNonZero";
23                 
24                 ofstream out;
25                 ofstream out2;
26                 
27                 ifstream phyloTreeTest(phyloTreeName.c_str());
28                 ifstream probFileTest2(probFileName2.c_str());
29                 ifstream probFileTest(probFileName.c_str());
30                 
31                 int start = time(NULL);
32                 
33                 if(probFileTest && probFileTest2 && phyloTreeTest){     
34                         m->mothurOut("Reading template taxonomy...     "); cout.flush();
35                         
36                         phyloTree = new PhyloTree(phyloTreeTest, phyloTreeName);
37                         
38                         m->mothurOut("DONE."); m->mothurOutEndLine();
39                         
40                         genusNodes = phyloTree->getGenusNodes(); 
41                         genusTotals = phyloTree->getGenusTotals();
42                 
43                         m->mothurOut("Reading template probabilities...     "); cout.flush();
44                         readProbFile(probFileTest, probFileTest2, probFileName, probFileName2); 
45                         
46                 }else{
47                 
48                         //create search database and names vector
49                         generateDatabaseAndNames(tfile, tempFile, method, ksize, 0.0, 0.0, 0.0, 0.0);
50                         
51                         genusNodes = phyloTree->getGenusNodes(); 
52                         genusTotals = phyloTree->getGenusTotals();
53                         
54                         m->mothurOut("Calculating template taxonomy tree...     "); cout.flush();
55                         
56                         phyloTree->printTreeNodes(phyloTreeName);
57                                                 
58                         m->mothurOut("DONE."); m->mothurOutEndLine();
59                         
60                         m->mothurOut("Calculating template probabilities...     "); cout.flush();
61                         
62                         numKmers = database->getMaxKmer() + 1;
63                 
64                         //initialze probabilities
65                         wordGenusProb.resize(numKmers);
66                 
67                         for (int j = 0; j < wordGenusProb.size(); j++) {        wordGenusProb[j].resize(genusNodes.size());             }
68                         
69                         
70                         #ifdef USE_MPI
71                                 int pid;
72                                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
73
74                                 if (pid == 0) {  
75                         #endif
76
77                         ofstream out;
78                         openOutputFile(probFileName, out);
79                         
80                         out << numKmers << endl;
81                         
82                         ofstream out2;
83                         openOutputFile(probFileName2, out2);
84                         
85                         #ifdef USE_MPI
86                                 }
87                         #endif
88
89                         
90                         //for each word
91                         for (int i = 0; i < numKmers; i++) {
92                                 if (m->control_pressed) { break; }
93                                 
94                                 #ifdef USE_MPI
95                                         MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
96
97                                         if (pid == 0) {  
98                                 #endif
99
100                                 out << i << '\t';
101                                 
102                                 #ifdef USE_MPI
103                                         }
104                                 #endif
105                                 
106                                 vector<int> seqsWithWordi = database->getSequencesWithKmer(i);
107                                 
108                                 map<int, int> count;
109                                 for (int k = 0; k < genusNodes.size(); k++) {  count[genusNodes[k]] = 0;  }                     
110                                                 
111                                 //for each sequence with that word
112                                 for (int j = 0; j < seqsWithWordi.size(); j++) {
113                                         int temp = phyloTree->getIndex(names[seqsWithWordi[j]]);
114                                         count[temp]++;  //increment count of seq in this genus who have this word
115                                 }
116                                 
117                                 //probabilityInTemplate = (# of seqs with that word in template + 0.05) / (total number of seqs in template + 1);
118                                 float probabilityInTemplate = (seqsWithWordi.size() + 0.50) / (float) (names.size() + 1);
119                                 
120                                 int numNotZero = 0;
121                                 for (int k = 0; k < genusNodes.size(); k++) {
122                                         //probabilityInThisTaxonomy = (# of seqs with that word in this taxonomy + probabilityInTemplate) / (total number of seqs in this taxonomy + 1);
123                                         wordGenusProb[i][k] = log((count[genusNodes[k]] + probabilityInTemplate) / (float) (genusTotals[k] + 1));  
124                                         if (count[genusNodes[k]] != 0) { 
125                                                 #ifdef USE_MPI
126                                                         MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
127                                                         if (pid == 0) {  
128                                                 #endif
129
130                                                 out << k << '\t' << wordGenusProb[i][k] << '\t'; 
131                                                 
132                                                 #ifdef USE_MPI
133                                                         }
134                                                 #endif
135
136                                                 numNotZero++;  
137                                         }
138                                 }
139                                 
140                                 #ifdef USE_MPI
141                                         MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
142                                         if (pid == 0) {  
143                                 #endif
144                                 
145                                 out << endl;
146                                 out2 << probabilityInTemplate << '\t' << numNotZero << endl;
147                                 
148                                 #ifdef USE_MPI
149                                         }
150                                 #endif
151                         }
152                         
153                         #ifdef USE_MPI
154                                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
155                                 if (pid == 0) {  
156                         #endif
157                         
158                         out.close();
159                         out2.close();
160                         
161                         #ifdef USE_MPI
162                                 }
163                         #endif
164                         
165                         //read in new phylotree with less info. - its faster
166                         ifstream phyloTreeTest(phyloTreeName.c_str());
167                         delete phyloTree;
168                         
169                         phyloTree = new PhyloTree(phyloTreeTest, phyloTreeName);
170                 }
171         
172                 m->mothurOut("DONE."); m->mothurOutEndLine();
173                 m->mothurOut("It took " + toString(time(NULL) - start) + " seconds get probabilities. "); m->mothurOutEndLine();
174         }
175         catch(exception& e) {
176                 m->errorOut(e, "Bayesian", "Bayesian");
177                 exit(1);
178         }
179 }
180 /**************************************************************************************************/
181 string Bayesian::getTaxonomy(Sequence* seq) {
182         try {
183                 string tax = "";
184                 Kmer kmer(kmerSize);
185                 
186                 //get words contained in query
187                 //getKmerString returns a string where the index in the string is hte kmer number 
188                 //and the character at that index can be converted to be the number of times that kmer was seen
189
190                 string queryKmerString = kmer.getKmerString(seq->getUnaligned()); 
191
192                 vector<int> queryKmers;
193                 for (int i = 0; i < queryKmerString.length(); i++) {
194                         if (queryKmerString[i] != '!') { //this kmer is in the query
195                                 queryKmers.push_back(i);
196                         }
197                 }
198                 
199                 if (queryKmers.size() == 0) {  m->mothurOut(seq->getName() + "is bad."); m->mothurOutEndLine(); return "bad seq"; }
200                 
201                 int index = getMostProbableTaxonomy(queryKmers);
202                 
203                 if (m->control_pressed) { return tax; }
204                                         
205                 //bootstrap - to set confidenceScore
206                 int numToSelect = queryKmers.size() / 8;
207                 tax = bootstrapResults(queryKmers, index, numToSelect);
208                                                 
209                 return tax;     
210         }
211         catch(exception& e) {
212                 m->errorOut(e, "Bayesian", "getTaxonomy");
213                 exit(1);
214         }
215 }
216 /**************************************************************************************************/
217 string Bayesian::bootstrapResults(vector<int> kmers, int tax, int numToSelect) {
218         try {
219                                 
220                 map<int, int> confidenceScores; 
221                                 
222                 map<int, int>::iterator itBoot;
223                 map<int, int>::iterator itBoot2;
224                 map<int, int>::iterator itConvert;
225                 
226                 for (int i = 0; i < iters; i++) {
227                         if (m->control_pressed) { return "control"; }
228                         
229                         vector<int> temp;
230                                                 
231                         for (int j = 0; j < numToSelect; j++) {
232                                 int index = int(rand() % kmers.size());
233                                 
234                                 //add word to temp
235                                 temp.push_back(kmers[index]);
236                         }
237                         
238                         //get taxonomy
239                         int newTax = getMostProbableTaxonomy(temp);
240                         TaxNode taxonomy = phyloTree->get(newTax);
241                         
242                         //add to confidence results
243                         while (taxonomy.level != 0) { //while you are not at the root
244                                 
245                                 itBoot2 = confidenceScores.find(newTax); //is this a classification we already have a count on
246                                 
247                                 if (itBoot2 == confidenceScores.end()) { //not already in confidence scores
248                                         confidenceScores[newTax] = 1;
249                                 }else{
250                                         confidenceScores[newTax]++;
251                                 }
252                                 
253                                 newTax = taxonomy.parent;
254                                 taxonomy = phyloTree->get(taxonomy.parent);
255                         }
256         
257                 }
258                 
259                 string confidenceTax = "";
260                 simpleTax = "";
261                 
262                 int seqTaxIndex = tax;
263                 TaxNode seqTax = phyloTree->get(tax);
264                 
265                 while (seqTax.level != 0) { //while you are not at the root
266                                         
267                                 itBoot2 = confidenceScores.find(seqTaxIndex); //is this a classification we already have a count on
268                                 
269                                 int confidence = 0;
270                                 if (itBoot2 != confidenceScores.end()) { //already in confidence scores
271                                         confidence = confidenceScores[seqTaxIndex];
272                                 }
273                                 
274                                 if (((confidence/(float)iters) * 100) >= confidenceThreshold) {
275                                         confidenceTax = seqTax.name + "(" + toString(((confidence/(float)iters) * 100)) + ");" + confidenceTax;
276                                         simpleTax = seqTax.name + ";" + simpleTax;
277                                 }
278                                 
279                                 seqTaxIndex = seqTax.parent;
280                                 seqTax = phyloTree->get(seqTax.parent);
281                 }
282                 
283                 if (confidenceTax == "") { confidenceTax = "unclassified;"; simpleTax = "unclassified;"; }
284                 return confidenceTax;
285                 
286         }
287         catch(exception& e) {
288                 m->errorOut(e, "Bayesian", "bootstrapResults");
289                 exit(1);
290         }
291 }
292 /**************************************************************************************************/
293 int Bayesian::getMostProbableTaxonomy(vector<int> queryKmer) {
294         try {
295                 int indexofGenus = 0;
296                 
297                 double maxProbability = -1000000.0;
298                 //find taxonomy with highest probability that this sequence is from it
299                 for (int k = 0; k < genusNodes.size(); k++) {
300                         //for each taxonomy calc its probability
301                         double prob = 1.0;
302                         for (int i = 0; i < queryKmer.size(); i++) {
303                                 prob += wordGenusProb[queryKmer[i]][k];
304                         }
305                 
306                         //is this the taxonomy with the greatest probability?
307                         if (prob > maxProbability) { 
308                                 indexofGenus = genusNodes[k];
309                                 maxProbability = prob;
310                         }
311                 }
312
313                 return indexofGenus;
314         }
315         catch(exception& e) {
316                 m->errorOut(e, "Bayesian", "getMostProbableTaxonomy");
317                 exit(1);
318         }
319 }
320 /*************************************************************************************************
321 map<string, int> Bayesian::parseTaxMap(string newTax) {
322         try{
323         
324                 map<string, int> parsed;
325                 
326                 newTax = newTax.substr(0, newTax.length()-1);  //get rid of last ';'
327         
328                 //parse taxonomy
329                 string individual;
330                 while (newTax.find_first_of(';') != -1) {
331                         individual = newTax.substr(0,newTax.find_first_of(';'));
332                         newTax = newTax.substr(newTax.find_first_of(';')+1, newTax.length());
333                         parsed[individual] = 1;
334                 }
335                 
336                 //get last one
337                 parsed[newTax] = 1;
338
339                 return parsed;
340                 
341         }
342         catch(exception& e) {
343                 m->errorOut(e, "Bayesian", "parseTax");
344                 exit(1);
345         }
346 }
347 /**************************************************************************************************/
348 void Bayesian::readProbFile(ifstream& in, ifstream& inNum, string inName, string inNumName) {
349         try{
350                 
351                 #ifdef USE_MPI
352                         
353                         int pid, num, num2;
354                         vector<long> positions;
355                         vector<long> positions2;
356                         
357                         MPI_Status status; 
358                         MPI_File inMPI;
359                         MPI_File inMPI2;
360                         MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
361
362                         char inFileName[1024];
363                         strcpy(inFileName, inNumName.c_str());
364                         
365                         char inFileName2[1024];
366                         strcpy(inFileName2, inName.c_str());
367
368                         MPI_File_open(MPI_COMM_WORLD, inFileName, MPI_MODE_RDONLY, MPI_INFO_NULL, &inMPI);  //comm, filename, mode, info, filepointer
369                         MPI_File_open(MPI_COMM_WORLD, inFileName2, MPI_MODE_RDONLY, MPI_INFO_NULL, &inMPI2);  //comm, filename, mode, info, filepointer
370
371                         if (pid == 0) {
372                                 positions = setFilePosEachLine(inNumName, num);
373                                 
374                                 //send file positions to all processes
375                                 MPI_Bcast(&num, 1, MPI_INT, 0, MPI_COMM_WORLD);  //send numSeqs
376                                 MPI_Bcast(&positions[0], (num+1), MPI_LONG, 0, MPI_COMM_WORLD); //send file pos 
377                                 
378                                 positions2 = setFilePosEachLine(inName, num2);
379                                 
380                                 //send file positions to all processes
381                                 MPI_Bcast(&num2, 1, MPI_INT, 0, MPI_COMM_WORLD);  //send numSeqs
382                                 MPI_Bcast(&positions2[0], (num2+1), MPI_LONG, 0, MPI_COMM_WORLD); //send file pos       
383
384                         }else{
385                                 MPI_Bcast(&num, 1, MPI_INT, 0, MPI_COMM_WORLD); //get numSeqs
386                                 positions.resize(num);
387                                 MPI_Bcast(&positions[0], (num+1), MPI_LONG, 0, MPI_COMM_WORLD); //get file positions
388                                 
389                                 MPI_Bcast(&num2, 1, MPI_INT, 0, MPI_COMM_WORLD); //get numSeqs
390                                 positions2.resize(num2);
391                                 MPI_Bcast(&positions2[0], (num2+1), MPI_LONG, 0, MPI_COMM_WORLD); //get file positions
392
393                         }
394                 
395                         //read numKmers
396                         int length = positions2[1] - positions2[0];
397                         char* buf = new char[length];
398
399                         MPI_File_read_at(inMPI2, positions2[0], buf, length, MPI_CHAR, &status);
400
401                         string tempBuf = buf;
402                         if (tempBuf.length() > length) { tempBuf = tempBuf.substr(0, length); }
403                         delete buf;
404
405                         istringstream iss (tempBuf,istringstream::in);
406                         iss >> numKmers;  
407                         
408                         //initialze probabilities
409                         wordGenusProb.resize(numKmers);
410                         
411                         for (int j = 0; j < wordGenusProb.size(); j++) {        wordGenusProb[j].resize(genusNodes.size());             }
412                         
413                         int kmer, name;  
414                         vector<int> numbers; numbers.resize(numKmers);
415                         float prob;
416                         vector<float> zeroCountProb; zeroCountProb.resize(numKmers);            
417
418                         //read file 
419                         for(int i=0;i<num;i++){
420                                 //read next sequence
421                                 length = positions[i+1] - positions[i];
422                                 char* buf4 = new char[length];
423
424                                 MPI_File_read_at(inMPI, positions[i], buf4, length, MPI_CHAR, &status);
425
426                                 tempBuf = buf4;
427                                 if (tempBuf.length() > length) { tempBuf = tempBuf.substr(0, length); }
428                                 delete buf4;
429
430                                 istringstream iss (tempBuf,istringstream::in);
431                                 iss >> zeroCountProb[i] >> numbers[i];  
432                         }
433                         
434                         MPI_File_close(&inMPI);
435                         
436                         for(int i=1;i<num2;i++){
437                                 //read next sequence
438                                 length = positions2[i+1] - positions2[i];
439                                 char* buf4 = new char[length];
440
441                                 MPI_File_read_at(inMPI2, positions2[i], buf4, length, MPI_CHAR, &status);
442
443                                 tempBuf = buf4;
444                                 if (tempBuf.length() > length) { tempBuf = tempBuf.substr(0, length); }
445                                 delete buf4;
446
447                                 istringstream iss (tempBuf,istringstream::in);
448                                 
449                                 iss >> kmer;
450                                 
451                                 //set them all to zero value
452                                 for (int i = 0; i < genusNodes.size(); i++) {
453                                         wordGenusProb[kmer][i] = log(zeroCountProb[kmer] / (float) (genusTotals[i]+1));
454                                 }
455                                 
456                                 //get probs for nonzero values
457                                 for (int i = 0; i < numbers[kmer]; i++) {
458                                         iss >> name >> prob;
459                                         wordGenusProb[kmer][name] = prob;
460                                 }
461                                 
462                         }
463                         MPI_File_close(&inMPI2);
464                 #else
465                 
466                         in >> numKmers; gobble(in);
467                         
468                         //initialze probabilities
469                         wordGenusProb.resize(numKmers);
470                         
471                         for (int j = 0; j < wordGenusProb.size(); j++) {        wordGenusProb[j].resize(genusNodes.size());             }
472                         
473                         int kmer, name, count;  count = 0;
474                         vector<int> num; num.resize(numKmers);
475                         float prob;
476                         vector<float> zeroCountProb; zeroCountProb.resize(numKmers);            
477                 
478                         while (inNum) {
479                                 inNum >> zeroCountProb[count] >> num[count];  
480                                 count++;
481                                 gobble(inNum);
482                         }
483                         inNum.close();
484                 
485                         while(in) {
486                                 in >> kmer;
487                                 
488                                 //set them all to zero value
489                                 for (int i = 0; i < genusNodes.size(); i++) {
490                                         wordGenusProb[kmer][i] = log(zeroCountProb[kmer] / (float) (genusTotals[i]+1));
491                                 }
492                                 
493                                 //get probs for nonzero values
494                                 for (int i = 0; i < num[kmer]; i++) {
495                                         in >> name >> prob;
496                                         wordGenusProb[kmer][name] = prob;
497                                 }
498                                 
499                                 gobble(in);
500                         }
501                         in.close();
502                         
503                 #endif
504         }
505         catch(exception& e) {
506                 m->errorOut(e, "Bayesian", "readProbFile");
507                 exit(1);
508         }
509 }
510 /**************************************************************************************************/
511
512
513
514
515
516