We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3205ba5 commit 56b18f9Copy full SHA for 56b18f9
analysis/workflow/scripts/midway_manhattan_summary.py
@@ -423,7 +423,7 @@ def main(
423
424
# remove any vals that were NA (but got converted to 0)
425
# and also any vals that were greater than max-val
426
- na_rows = (vals == 0).any(axis=1) | (vals > max_val).any(axis=1)
+ na_rows = (vals == 0).any(axis=1) | (vals >= max_val).any(axis=1)
427
not_na_rows_idxs = {k: v[~na_rows] for k,v in axes_idxs.items()}
428
if color is not None:
429
colors = colors[~na_rows]
0 commit comments