Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Jul 1, 2024
1 parent 938b528 commit 5b7e770
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions anglerfish/demux/demux.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ def parse_cs(
else:
bases_spanning_index_mask = bases_spanning_mask
# Return the index and the Levenshtein distance between it and the presumed index region of the read
return bases_spanning_index_mask, lev.distance(
index_seq.lower(), bases_spanning_index_mask
return (
bases_spanning_index_mask,
lev.distance(index_seq.lower(), bases_spanning_index_mask),
)


Expand Down

0 comments on commit 5b7e770

Please sign in to comment.