Skip to content
Snippets Groups Projects
Commit 0b5cb417 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Upper the off-target sequence

parent a7254c08
No related branches found
No related tags found
No related merge requests found
Pipeline #28565 passed with stage
in 53 seconds
......@@ -24,7 +24,7 @@ def get_off_target_pos(guide, records, seed_size):
if records is not None:
offs = iter([])
for rec in records:
sequence_str = str(rec.seq)
sequence_str = str(rec.seq).upper()
seqid = rec.id
offs_plus = re.finditer(guide[-seed_size:] + "[ATGC]GG", sequence_str)
offs_plus = gen_extract_off_target_strand_plus(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment