Skip to content

Commit 81d6db4

Browse files
committed
install module
1 parent 9f5149c commit 81d6db4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

snv_indel_call.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
"""
33
VCF filter; make calls based on supporting depth
44
"""

snv_readcounts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
"""
33
Routines for reading in paired bam-readcount files,
44
and comparing to a somatic VCF

utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def snv_readcount(union_dir, validated_dir, readcount_dir):
297297
if not os.path.exists(validated_dir):
298298
os.makedirs(validated_dir)
299299

300-
for fn in glob.glob(os.path.join(union_dir, "*.vcf"), recursive=True):
300+
for fn in glob.glob(os.path.join(union_dir, "*.snv.vcf"), recursive=True):
301301
projectId, donorId, sampleId, library_strategy, evtype, fileformat = os.path.basename(fn).split(".")
302302
output_vcf = os.path.join(validated_dir, '.'.join([projectId, donorId, 'validated', evtype, fileformat]))
303303
normal_rc = glob.glob(os.path.join(readcount_dir, '.'.join([projectId, donorId, sample[donorId]['normal'], 'targeted-seq', '*', 'aln.bam.rc'])))[0]
@@ -322,7 +322,7 @@ def snv_readcount(union_dir, validated_dir, readcount_dir):
322322
vcf.write(header+"\n")
323323

324324
snv_rc = f"./snv_readcounts.py {fn} {normal_rc} {tumour_rc}"
325-
snv_indel_call = f"./scripts/snv_indel_call.py --error 0.01 --callthreshold 0.02 --strandbias 0.001 --germlineprob 0.01 --mindepth 30"
325+
snv_indel_call = f"./snv_indel_call.py --error 0.01 --callthreshold 0.02 --strandbias 0.001 --germlineprob 0.01 --mindepth 30"
326326
sed = f"sed -e 's/;;/;/'"
327327
grep = f'grep -v "^#"'
328328
sort = f'sort -k1,1 -k2,2n >> {output_vcf}'

0 commit comments

Comments
 (0)