Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
chaklim committed Dec 10, 2019
2 parents c6fa4d4 + b2fd869 commit 714a458
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dataPrepScripts/ExtractVariantCandidates.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,8 @@ def make_candidates(args):

elif c == "M" or c == "=" or c == "X":
for _ in range(advance):
base = BASE2ACGT[SEQ[query_position]]
query_base = SEQ[query_position]
base = BASE2ACGT[query_base] if query_base != "N" else query_base
pileup[reference_position][base] += 1

# those CIGAR operations consumes query and reference
Expand Down

0 comments on commit 714a458

Please sign in to comment.