Skip to content

Commit

Permalink
fixup! Adapt to changes in NumPy broadcast behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
padix-key committed Jun 11, 2024
1 parent ba8b841 commit 3f6b7b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/biotite/sequence/align/kmertable.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -3394,7 +3394,7 @@ def _to_string(table):
else:
symbols = str(tuple(symbols))
line = symbols + ": " + ", ".join(
[str(tuple(pos)) for pos in table[kmer]]
[str((ref_id.item(), pos.item())) for ref_id, pos in table[kmer]]
)
lines.append(line)
return "\n".join(lines)

0 comments on commit 3f6b7b9

Please sign in to comment.