Skip to content

Commit

Permalink
Loosened slightly thresholds for calling exon9 gene conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
xiao-chen-xc committed Jul 9, 2020
1 parent d214e26 commit 15008c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion caller/match_star_allele.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,8 @@ def update_variants(var_observed, cnvcall, exon9):
and exon9.exon9_cn <= 1
):
if "g.42126611C>G" not in var_observed or (
exon9.exon9_raw_site1 < 1.15 and exon9.exon9_raw_site2 < 1.15
min(exon9.exon9_raw_site1, exon9.exon9_raw_site2) < 1.15
and max(exon9.exon9_raw_site1, exon9.exon9_raw_site2) < 1.2
):
for _ in range(exon9.exon9cn_in_consensus - exon9.exon9_cn):
var_observed.append("exon9gc")
Expand Down

0 comments on commit 15008c9

Please sign in to comment.