Skip to content

Commit

Permalink
MIN Fix deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
luispedro committed Oct 18, 2023
1 parent d5cfeaf commit 537e34c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SemiBin/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def contig_name(ell):
else:
def extract_seeds(vs, sel):
vs = vs.sort_values()
median = vs[len(vs) //2]
median = vs.iloc[len(vs) //2]

# the original version broke ties by picking the shortest query, so we
# replicate that here:
Expand Down

0 comments on commit 537e34c

Please sign in to comment.