1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/e32bc4b2b3df/ changeset: r5192:e32bc4b2b3df user: jgoecks date: 2011-03-07 21:53:31 summary: Fix bug in output for gff_filter_by_feature_count tool. affected #: 1 file (8 bytes) --- a/tools/filters/gff/gff_filter_by_feature_count.py Mon Mar 07 15:40:24 2011 -0500 +++ b/tools/filters/gff/gff_filter_by_feature_count.py Mon Mar 07 15:53:31 2011 -0500 @@ -128,7 +128,7 @@ # Clean up. out.close() - info_msg = "%i lines kept (%.2f%%) using condition %s. " % ( kept_lines, float(kept_lines)/i, feature_name + condition ) + info_msg = "%i lines kept (%.2f%%) using condition %s. " % ( kept_lines, float(kept_lines)/i * 100.0, feature_name + condition ) if skipped_lines > 0: info_msg += "Skipped %d blank/comment/invalid lines starting with line #%d." %( skipped_lines, first_skipped_line ) print info_msg Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.