From 9870d254dfde04d59f795cc6aa395171ce787213 Mon Sep 17 00:00:00 2001 From: westcott Date: Thu, 13 Aug 2009 14:36:07 +0000 Subject: [PATCH] last changes before move --- bellerophon.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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"); -- 2.39.2