Skip to content

Commit

Permalink
fix probe targeting
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaynagi committed Oct 11, 2024
1 parent 19f4c6c commit 02d7e62
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions AnoPrimer/design.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,11 @@ def prepare_gDNA_sequence(
}

if "probe" in assay_type:
seq_parameters["SEQUENCE_INTERNAL_EXCLUDED_REGION"] = [
[1, target_loc_primer3[0] - probe_exclude_region_size],
[
target_loc_primer3[0] + probe_exclude_region_size,
len(target_sequence)
- (target_loc_primer3[0] + probe_exclude_region_size),
],
seq_parameters["SEQUENCE_INTERNAL_OVERLAP_JUNCTION_LIST"] = [
target_loc_primer3[0]
]
seq_parameters["PRIMER_MIN_3_PRIME_OVERLAP_OF_JUNCTION"] = 3
seq_parameters["PRIMER_MIN_5_PRIME_OVERLAP_OF_JUNCTION"] = 3

return seq_parameters

Expand Down

0 comments on commit 02d7e62

Please sign in to comment.