Skip to content

Commit 306db7c

Browse files
committed
Fixing annotate_pvcf_cov
I wasn't preserving variants
1 parent f7168e8 commit 306db7c

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

variants/diversity/mk_convert_cmds.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
in_files=$@
12
mkdir -p jobs
23
mkdir -p utmos_files
3-
for i in ../data/parts/*.bcf.gz
4+
for i in $in_files
45
do
56
bname=$(basename $i)
6-
job_name=jobs/${bname%.bcf.gz}_cvt.sh
7+
job_name=jobs/${bname%.vcf.gz}_cvt.sh
78
echo "#!/bin/bash" > ${job_name}
8-
echo "bcftools view -i \"SVLEN == '.'\" $i | bcftools filter -S . -e \"FT == 'F'\" | utmos convert --lowmem /dev/stdin utmos_files/${bname}_utmos_small.jl" >> ${job_name}
9-
echo "bcftools view -i \"SVLEN != '.'\" $i | bcftools filter -S . -e \"FT == 'F'\" | utmos convert --lowmem /dev/stdin utmos_files/${bname}_utmos_big.jl" >> ${job_name}
9+
echo "bcftools view -i \"SVLEN == '.'\" $i | bcftools filter -S . -e \"FT == 'FAIL'\" | utmos convert --lowmem /dev/stdin utmos_files/${bname}_utmos_small.jl" >> ${job_name}
10+
echo "bcftools view -i \"SVLEN != '.'\" $i | bcftools filter -S . -e \"FT == 'FAIL'\" | utmos convert --lowmem /dev/stdin utmos_files/${bname}_utmos_big.jl" >> ${job_name}
1011
done

variants/scripts/annotate_pvcf_cov.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,14 @@
5151
is_single2 = u_cov2 == 1 and d_cov2 == 1
5252
if is_single1 and is_single2:
5353
entry.samples[sample]["FT"] = 'PASS'
54+
gt1, gt2 = entry.samples[sample]["GT"]
55+
gt1 = 0 if gt1 is None else gt1
56+
gt2 = 0 if gt2 is None else gt2
5457
else:
5558
entry.samples[sample]["FT"] = 'FAIL'
59+
gt1 = 0 if u_cov1 >= 1 and d_cov1 >= 1 else None
60+
gt2 = 0 if u_cov2 >= 1 and u_cov2 >= 1 else None
5661
# Set the genotype
57-
gt1 = 0 if u_cov1 >= 1 and d_cov1 >= 1 else None
58-
gt2 = 0 if u_cov2 >= 1 and u_cov2 >= 1 else None
5962
entry.samples[sample]["GT"] = (gt1, gt2)
6063
entry.samples[sample]["AD"] = (max(u_cov1, d_cov1), max(u_cov2, d_cov2))
6164
out.write(entry)

0 commit comments

Comments
 (0)