mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-24 16:30:27 +08:00
Fix for aggregate_scores_in_intervals.py broken in 95bf71620d50c6d81248eef2001a7dc156ae1088.
This commit is contained in:
@@ -201,7 +201,7 @@ def main():
|
||||
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 )
|
||||
|
||||
Reference in New Issue
Block a user