From 3f4ab2e5977ee58ea95271bbfab70f514f0e0335 Mon Sep 17 00:00:00 2001 From: Christian Meesters Date: Fri, 19 Apr 2024 09:53:16 +0200 Subject: [PATCH] fix: line break in exercise for 04 --- slides/creators/A_First_Workflow_condensed.tex | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/slides/creators/A_First_Workflow_condensed.tex b/slides/creators/A_First_Workflow_condensed.tex index 0fe5eed..62118db 100644 --- a/slides/creators/A_First_Workflow_condensed.tex +++ b/slides/creators/A_First_Workflow_condensed.tex @@ -401,13 +401,13 @@ \subsection{A first Step or ``Rule''} For later steps, we need the read alignments in the BAM files to be sorted. This can be achieved with the \lhref{https://www.htslib.org/}{\texttt{samtools}} \altverb{sort} command. We add the following rule beneath the \altverb{bwa_map} rule: \begin{lstlisting}[language=Python,style=Python] rule samtools_sort: - input: - ... - output: - ... - shell: - "samtools sort -T sorted_reads/{wildcards.sample} " - "-O bam {input} > {output}" + input: + ... + output: + ... + shell: + "samtools sort -T sorted_reads/{wildcards.sample}" + " -O bam {input} > {output}" \end{lstlisting} \begin{task} Please refer to your template \newline \altverb{04_Snakefile} in the tutorial folder and fill in \altverb{input} and \altverb{output}.