Skip to content

Commit

Permalink
fix: correct strand typo (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson authored Jul 23, 2024
1 parent 11118a1 commit ce8a3ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cool_seq_tool/mappers/exon_genomic_coords.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ def _get_adjacent_exon(
exon = tx_exons_genomic_coords[i]
next_exon = tx_exons_genomic_coords[i + 1]
bp = start if start else end
if strand == strand.POSITIVE:
if strand == Strand.POSITIVE:
lte_exon = exon
gte_exon = next_exon
else:
Expand Down

0 comments on commit ce8a3ef

Please sign in to comment.