@@ -297,7 +297,7 @@ def snv_readcount(union_dir, validated_dir, readcount_dir):
297
297
if not os .path .exists (validated_dir ):
298
298
os .makedirs (validated_dir )
299
299
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 ):
301
301
projectId , donorId , sampleId , library_strategy , evtype , fileformat = os .path .basename (fn ).split ("." )
302
302
output_vcf = os .path .join (validated_dir , '.' .join ([projectId , donorId , 'validated' , evtype , fileformat ]))
303
303
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):
322
322
vcf .write (header + "\n " )
323
323
324
324
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"
326
326
sed = f"sed -e 's/;;/;/'"
327
327
grep = f'grep -v "^#"'
328
328
sort = f'sort -k1,1 -k2,2n >> { output_vcf } '
0 commit comments