Skip to content

Commit

Permalink
Update advanced.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Apr 24, 2022
1 parent 578df8c commit 1adb144
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial/advanced.rst
Expand Up @@ -118,7 +118,7 @@ Now, we can remove the statement defining ``SAMPLES`` from the Snakefile and cha
output:
"calls/all.vcf"
shell:
"samtools mpileup -g -f {input.fa} {input.bam} | "
"bcftools mpileup -f {input.fa} {input.bam} | "
"bcftools call -mv - > {output}"
.. _tutorial-input_functions:
Expand Down Expand Up @@ -384,7 +384,7 @@ With this, the final version of our workflow in the ``Snakefile`` looks like thi
log:
"logs/bcftools_call/all.log"
shell:
"(samtools mpileup -g -f {input.fa} {input.bam} | "
"(bcftools mpileup -f {input.fa} {input.bam} | "
"bcftools call -mv -P {params.rate} - > {output}) 2> {log}"
Expand Down

0 comments on commit 1adb144

Please sign in to comment.