From: westcott Date: Thu, 13 Aug 2009 14:36:07 +0000 (+0000) Subject: last changes before move X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9870d254dfde04d59f795cc6aa395171ce787213;p=mothur.git last changes before move --- diff --git a/bellerophon.cpp b/bellerophon.cpp index 5e219d4..dc021c0 100644 --- a/bellerophon.cpp +++ b/bellerophon.cpp @@ -32,7 +32,7 @@ void Bellerophon::print(ostream& out) { out << "Name\tScore\tLeft\tRight\t" << endl; //output prefenence structure to .chimeras file for (int i = 0; i < pref.size(); i++) { - out << pref[i].name << '\t' << pref[i].score[0] << '\t' << pref[i].leftParent[0] << '\t' << pref[i].rightParent[0] << endl; + out << pref[i].name << '\t' << setprecision(3) << pref[i].score[0] << '\t' << pref[i].leftParent[0] << '\t' << pref[i].rightParent[0] << endl; //calc # of seqs with preference above 1.0 if (pref[i].score[0] > 1.0) { @@ -221,12 +221,9 @@ cout << "increment = " << increment << endl; } - //sort Preferences highest to lowest sort(pref.begin(), pref.end(), comparePref); - - } catch(exception& e) { errorOut(e, "Bellerophon", "getChimeras");