Skip to content

Commit 6281807

Browse files
committed
fix: correct directory and suffix for quals plot - on some clusters display of svg files does not work.
1 parent 80e8742 commit 6281807

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

slides/creators/Python_in_Snakemake.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ \subsection{Snakemake and external Scripts}
299299
input:
300300
"calls/all.vcf"
301301
output:
302-
"plots/quals.svg"
302+
"calls/quals.png"
303303
@script:@
304304
"scripts/plot-quals.py"
305305
\end{lstlisting}
@@ -322,7 +322,7 @@ \subsection{Snakemake and external Scripts}
322322
input:
323323
"calls/all.vcf", # note the comma!
324324
"calls/positions.png",
325-
@"calls/quals.svg"@
325+
@"calls/quals.png"@
326326
\end{lstlisting}
327327
\end{frame}
328328

@@ -478,7 +478,7 @@ \subsection{Running the final Workflow}
478478
\frametitle{\HandsOn{Visualising the Output}}
479479
On <++cluster.name++> the Linux distro is "<++cluster.distro++>", which \newline provides the \altverb{<++cluster.display_program++>}-program to display simple images. We shall invoke:
480480
\begin{lstlisting}[language=Bash, style=Shell]
481-
$ <++cluster.display_program++> calls/quals.svg
481+
$ <++cluster.display_program++> calls/quals.png
482482
\end{lstlisting}
483483
The figure has no axis-labels.
484484
\begin{question}

0 commit comments

Comments
 (0)