Skip to content

Commit

Permalink
height_max from *absolute* score values
Browse files Browse the repository at this point in the history
  • Loading branch information
r-trimbour authored Jul 10, 2024
1 parent 711e117 commit a1e7b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circe/draw.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def plot_connections(
"Peak2_end",
"score"
]]
max_height = coordinates.iloc[:, 4].max()
max_height = np.abs(coordinates.iloc[:, 4]).max()
print(max_height)

for coordinate in coordinates.index:
Expand Down

0 comments on commit a1e7b66

Please sign in to comment.