Skip to content

Commit

Permalink
barcode is 12 bp length
Browse files Browse the repository at this point in the history
  • Loading branch information
Acribbs committed Jul 11, 2023
1 parent 295c505 commit 4501d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tallytrin/python/identify_bcumi_macosko.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def find_substring(long_string, subset_str):

bc_start = find_substring(seq, "GTACTCTGCG")
if bc_start is not None:
barcode = seq[bc_start-10:bc_start]
barcode = seq[bc_start-12:bc_start]
barcodes.append(barcode)
umi = seq[bc_start-18:bc_start-12]
if umi is None:
Expand Down

0 comments on commit 4501d62

Please sign in to comment.