修改血液的过滤条件
parent
493a99cecd
commit
a48795ac8b
|
|
@ -84,13 +84,13 @@ while (<IN>) {
|
|||
push @reason, 'benign';
|
||||
}
|
||||
|
||||
# 不是pass 低频的; 或者 0.02 < 0.05 之间 个数大于2
|
||||
if ($line[101] ne 'PASS' and ($freq < 0.02 or ($freq >= 0.02 and $freq < 0.05 and $filters >= 2))) {
|
||||
push @reason, 'byfilter';
|
||||
}
|
||||
|
||||
# cfdna 样本
|
||||
if ($sample_type eq 'c') {
|
||||
|
||||
if ($line[101] ne 'PASS' and ($freq < 0.005 or ($freq >= 0.005 and $freq < 0.01 and $filters >= 2))) {
|
||||
push @reason, 'byfilter';
|
||||
}
|
||||
|
||||
# 低频的 cosmic91 无记录的
|
||||
if ($freq < 0.01 and $line[11] eq '.') {
|
||||
push @reason, 'cfdna_lowfreq_cosmic';
|
||||
|
|
@ -110,6 +110,13 @@ while (<IN>) {
|
|||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
# 不是pass 低频的; 或者 0.02 < 0.05 之间 个数大于2 血液 0.005 - 0.01
|
||||
if ($line[101] ne 'PASS' and ($freq < 0.02 or ($freq >= 0.02 and $freq < 0.05 and $filters >= 2))) {
|
||||
push @reason, 'byfilter';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
my $protein;
|
||||
if ($line[9] eq '.') {
|
||||
|
|
@ -139,7 +146,7 @@ while (<IN>) {
|
|||
else {
|
||||
push @reason, 'not_need_spl';
|
||||
}
|
||||
if ($gene eq "MET" ) {
|
||||
if ($gene eq "MET") {
|
||||
$line[9] = join(":", ($gene, "NM_000245", "exon14", "c.xxx"));
|
||||
$line[8] = 'skipping'
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue