Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ameynert committed Jan 13, 2025
1 parent 1ea7b6b commit 6ccafec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prymer/api/picking.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,13 @@ def build_primer_pairs( # noqa: C901

# If the right primer isn't "to the right" of the left primer, move on
if rp.span.start < lp.span.start or lp.span.end > rp.span.end:
first_right_primer_idx = max(first_right_primer_idx, j+1)
first_right_primer_idx = max(first_right_primer_idx, j + 1)
continue

amp_span = PrimerPair.calculate_amplicon_span(lp, rp)

if amp_span.length < amplicon_sizes.min:
first_right_primer_idx = max(first_right_primer_idx, j+1)
first_right_primer_idx = max(first_right_primer_idx, j + 1)
continue

if amp_span.length > amplicon_sizes.max:
Expand Down

0 comments on commit 6ccafec

Please sign in to comment.