Skip to content
Snippets Groups Projects
Commit 409c7ecb authored by Sascha Meiers's avatar Sascha Meiers
Browse files

fixed empty snv calls

parent 1073911b
No related branches found
No related tags found
No related merge requests found
......@@ -369,7 +369,7 @@ rule call_SNVs_bcftools_chrom:
shell:
"""
{params.samtools} mpileup -r {wildcards.chrom} -g -f {input.fa} {input.bam} \
| {params.bcftools} call -mv - | {params.bcftools} view --genotype het --types snps - > {output} > {log} 2>&1
| {params.bcftools} call -mv - | {params.bcftools} view --genotype het --types snps - > {output} 2> {log}
"""
# Write one file per chromosome that should be analysed.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment