commit/galaxy-central: dan: Fix for aggregate_scores_in_intervals.py broken in 95bf71620d50c6d81248eef2001a7dc156ae1088.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/6c5913a4b701/ Changeset: 6c5913a4b701 Branch: stable User: dan Date: 2014-01-27 15:54:34 Summary: Fix for aggregate_scores_in_intervals.py broken in 95bf71620d50c6d81248eef2001a7dc156ae1088. Affected #: 1 file diff -r 03f7d79212ecf626af4940296e663c376b9cd2ee -r 6c5913a4b701813e823638125fff8bf9fda7354b tools/stats/aggregate_scores_in_intervals.py --- a/tools/stats/aggregate_scores_in_intervals.py +++ b/tools/stats/aggregate_scores_in_intervals.py @@ -201,7 +201,7 @@ continue # Get the score, only count if not 'nan' score = scores_by_chrom[chrom][j] - if not isNaN( score ): + if not isnan( score ): total += score count += 1 max_score = max( score, max_score ) 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.
participants (1)
-
commits-noreply@bitbucket.org