Skip to content
Snippets Groups Projects
Commit 07f39030 authored by Ruqian Lyu's avatar Ruqian Lyu
Browse files

improve countAllele

parent 23656862
No related branches found
No related tags found
No related merge requests found
Pipeline #10931 passed
......@@ -67,8 +67,9 @@ proc get_base_offset*(position:int, align: Record): int =
if off <= position:
continue
over = off - position
# get the base
base_offset = qoff - over-1
base_offset = qoff - over - 1
if($event.op == 'N') or ($event.op == 'D') or ($event.op == 'H'):
base_offset = -1
break
return base_offset
......@@ -147,6 +148,8 @@ proc countAllele*(ibam:Bam, maxTotalReads:int,
if not barcodeTable.hasKey(currentCB): continue
base_off = get_base_offset(position = stopPos, align = aln)
base = aln.base_at(base_off)
if base_off < 0:
continue
if aln.base_quality_at(base_off).cint < minbsq:
continue
total_reads+=1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment