X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=bayesian.cpp;h=af1fa27f2202de76086e562c775229f4f241e387;hb=5d176c0f8049654ec3ae5a869c9ee3cecb991dc6;hp=e59545a89a04031999885beb932dac5003ab6b8c;hpb=d5bf2c1354d0811a33394d918b15620606560d58;p=mothur.git diff --git a/bayesian.cpp b/bayesian.cpp index e59545a..af1fa27 100644 --- a/bayesian.cpp +++ b/bayesian.cpp @@ -43,10 +43,10 @@ Classify(tfile, tempFile, method, ksize, 0.0, 0.0, 0.0, 0.0), kmerSize(ksize), c int start = time(NULL); if(probFileTest && probFileTest2){ - mothurOut("Reading template probabilities... "); cout.flush(); + m->mothurOut("Reading template probabilities... "); cout.flush(); readProbFile(probFileTest, probFileTest2); }else{ - mothurOut("Calculating template probabilities... "); cout.flush(); + m->mothurOut("Calculating template probabilities... "); cout.flush(); ofstream out; openOutputFile(probFileName, out); @@ -56,6 +56,7 @@ Classify(tfile, tempFile, method, ksize, 0.0, 0.0, 0.0, 0.0), kmerSize(ksize), c //for each word for (int i = 0; i < numKmers; i++) { + if (m->control_pressed) { break; } out << i << '\t'; @@ -88,11 +89,11 @@ Classify(tfile, tempFile, method, ksize, 0.0, 0.0, 0.0, 0.0), kmerSize(ksize), c } - mothurOut("DONE."); mothurOutEndLine(); - mothurOut("It took " + toString(time(NULL) - start) + " seconds get probabilities. "); mothurOutEndLine(); + m->mothurOut("DONE."); m->mothurOutEndLine(); + m->mothurOut("It took " + toString(time(NULL) - start) + " seconds get probabilities. "); m->mothurOutEndLine(); } catch(exception& e) { - errorOut(e, "Bayesian", "getTaxonomy"); + m->errorOut(e, "Bayesian", "Bayesian"); exit(1); } } @@ -114,6 +115,8 @@ string Bayesian::getTaxonomy(Sequence* seq) { } int index = getMostProbableTaxonomy(queryKmers); + + if (m->control_pressed) { return tax; } //bootstrap - to set confidenceScore int numToSelect = queryKmers.size() / 8; @@ -122,7 +125,7 @@ string Bayesian::getTaxonomy(Sequence* seq) { return tax; } catch(exception& e) { - errorOut(e, "Bayesian", "getTaxonomy"); + m->errorOut(e, "Bayesian", "getTaxonomy"); exit(1); } } @@ -143,6 +146,8 @@ string Bayesian::bootstrapResults(vector kmers, int tax, int numToSelect) { map::iterator itConvert; for (int i = 0; i < iters; i++) { + if (m->control_pressed) { return "control"; } + vector temp; for (int j = 0; j < numToSelect; j++) { @@ -196,7 +201,7 @@ string Bayesian::bootstrapResults(vector kmers, int tax, int numToSelect) { } catch(exception& e) { - errorOut(e, "Bayesian", "bootstrapResults"); + m->errorOut(e, "Bayesian", "bootstrapResults"); exit(1); } } @@ -225,7 +230,7 @@ int Bayesian::getMostProbableTaxonomy(vector queryKmer) { return indexofGenus; } catch(exception& e) { - errorOut(e, "Bayesian", "getMostProbableTaxonomy"); + m->errorOut(e, "Bayesian", "getMostProbableTaxonomy"); exit(1); } } @@ -252,7 +257,7 @@ map Bayesian::parseTaxMap(string newTax) { } catch(exception& e) { - errorOut(e, "Bayesian", "parseTax"); + m->errorOut(e, "Bayesian", "parseTax"); exit(1); } } @@ -291,7 +296,7 @@ void Bayesian::readProbFile(ifstream& in, ifstream& inNum) { in.close(); } catch(exception& e) { - errorOut(e, "Bayesian", "readProbFile"); + m->errorOut(e, "Bayesian", "readProbFile"); exit(1); } }