Skip to content

Commit ae87436

Browse files
authored
fix: python (#158)
* fix: removed superflous conditional * fix: bcftools seemed missing in environment.yaml * feat: added seaborn to environment.yaml * feat: new python rule demonstrating the run directive * feat: added Snakefile to illustrate the python run directive and a solution * feat: introducing the parson problem * feat: extended reach of the Python section's scope * fix: typo * fix: added pip install of pysam to environment yaml file * fix: 06_Snakefile_run task setting now syntactically correct * feat: new slide introducing the Parson problem from the last commits as a task * feat: added results positions file to illustrate the solution * fix: removed outdated solution file 06 * fix: added filnalized version of for the run directive * feat: no cloze for 07 script, but a solution * feat: plot quals to rule creation, only discussing script in the future * fix: bcftools with minimum version * fix: removed doubled bcftools entry * feat: added exercise to move run to script content * fix: typo * fix: grammar * fix: layout glitches * fix: layout (tabs to spaces) * fix: a little clearer message * feat: added dummy chapter entry for parallel execution chapter! * fix: added missing source information * fix: the suffix 'tex' for the editorfile lead to miscounting of the render script * fix: clarification in sourcing bashrc * fix: env creation was idented * fix: line wrap problem when demonstrating minmum cluster software * fix: remove suggestion to save, as everything is copied * fix: removed braces in sentence - better layout
1 parent a327718 commit ae87436

11 files changed

+21
-16
lines changed

config/config_Mainz_NHR.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ course:
2929
# Editors recommendations are a matter of taste and technological
3030
# setups (e.g. on-demand setups). Hence, specify an editor-slide,
3131
# here:
32-
editorfile: "common/mod_cs_mainz.tex"
32+
editorfile: "common/mod_cs_mainz"
3333
# The next line indicates the slides explaining
3434
# a condarc file on a cluster, copy and adjust
3535
# for your cluster.

config/config_for_github.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ course:
2929
# Editors recommendations are a matter of taste and technological
3030
# setups (e.g. on-demand setups). Hence, specify an editor-slide,
3131
# here:
32-
editorfile: "common/editor_gedit_mainz.tex"
32+
editorfile: "common/editor_gedit_mainz"
3333
# The next line indicates the slides explaining
3434
# a condarc file on a cluster, copy and adjust
3535
# for your cluster.

setup_creators/environment.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ dependencies:
2020
# using pip
2121
- pygments
2222
- seaborn
23-

setup_creators/solutions/08_Snakefile_script2

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# our samples are pre-configured
22
SAMPLES = ["A", "B"]
33

4+
configfile: "config/config.yaml"
45

56
rule all:
67
input:

setup_creators/solutions/09_Snakefile_config

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# our samples are pre-configured
2+
SAMPLES = ["A", "B"]
3+
14
configfile: "config/config.yaml"
25

36
rule all:
@@ -38,8 +41,8 @@ rule samtools_index:
3841
rule bcftools_call:
3942
input:
4043
fa="data/genome.fa",
41-
bam=expand("sorted_reads/{sample}.bam", sample=config["samples"]),
42-
bai=expand("sorted_reads/{sample}.bam.bai", sample=config["samples"])
44+
bam=expand("sorted_reads/{sample}.bam", sample=SAMPLES),
45+
bai=expand("sorted_reads/{sample}.bam.bai", sample=SAMPLES)
4346
output:
4447
"calls/all.vcf"
4548
shell:

slides/Snakemake_HPC_User_Creator_Combi.tex

+3
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@
8989
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9090
\include{creators/Workflow_Parameterization_for_HPC}
9191
<+++ if course.question is defined +++>\include{common/question_time}<+++endif+++>
92+
93+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
94+
\include{creators/Parallel_Execution}
9295

9396
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9497
\include{common/Reports}

slides/common/Why_Workflows.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ \section{Why Workflows}
2727
\end{question}
2828
\begin{docs}[Objectives]
2929
\begin{enumerate}
30-
\item Introducing workflow engines (particularly \Snakemake)!
30+
\item Introducing workflow engines - particularly \Snakemake!
3131
\end{enumerate}
3232
\end{docs}
3333
\end{frame}

slides/common/against_frustration.tex

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ \section*{Frustration}
33
{
44
\usebackgroundtemplate{
55
\vbox to \paperheight{\vfil\hbox to \paperwidth{\hfil\includegraphics[height=\paperheight]{humor/DALLE_frustration_to_heureka.jpg}\hfil}\vfil}
6-
% source: https://en.m.wikipedia.org/wiki/File:Text-x-python.svg
6+
77
}
88
\frame{
99
\frametitle{Before we begin \ldots}
@@ -18,5 +18,6 @@ \section*{Frustration}
1818
\item just a reason to ask
1919
\end{itemize}
2020
\end{mdframed}
21+
\vfill\hfil \hfill{\tiny image: own creation with DALL-E}
2122
}
2223
}

slides/common/software_environment.tex

+4-6
Original file line numberDiff line numberDiff line change
@@ -271,12 +271,10 @@ \subsection{Using Conda}
271271
\begin{frame}[fragile]
272272
\frametitle{Initializing Conda \& Mamba}
273273
To initialize Conda, simply run
274+
274275
\begin{lstlisting}[language=Bash, style=Shell]
275-
$ bash
276-
\end{lstlisting}
277-
or (better)
278-
\begin{lstlisting}[language=Bash, style=Shell]
279-
$ source ~/.bashrc
276+
$ # only once - not necessary after new login
277+
$ source ~/.bashrc
280278
\end{lstlisting}
281279
Subsequently, run:
282280
\begin{lstlisting}[language=Bash, style=Shell]
@@ -395,7 +393,7 @@ \subsection{Using Conda}
395393
\frametitle{\HandsOn{Activating Environments}}
396394
It is time to activate a shared environment:
397395
\begin{lstlisting}[language=Bash, style=Shell]
398-
$ mamba activate <<++course.softwarepath++>>
396+
$ mamba activate <<++course.softwarepath++>>
399397
\end{lstlisting}
400398
Your prompt should now feature the name of the environment: \altverb{snakemake}.
401399
\end{frame}

slides/creators/A_First_Workflow.tex

-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,6 @@ \subsection{A first Step or ``Rule''}
314314
\bcattention Python will concatenate those Strings! Be sure to include spaces to make up a valid command in Bash.
315315
\end{onlyenv}
316316
\begin{onlyenv}<5| handout:1>
317-
Be sure to have copied everything to your \altverb{Snakefile} and save it.
318317
\begin{lstlisting}[language=Python,style=Python]
319318
rule bwa_map:
320319
input:

slides/users/Selecting_Workflows.tex

+3-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,9 @@ \subsection{The Snakemake Workflow Catalogue}
9292
\frametitle{Deployment II - Creating an Environment Fork}
9393
Usually, we can create an environment like:
9494
\begin{lstlisting}[language=Bash, style=Shell]
95-
$ mamba create -c conda-forge -c bioconda -n snakemake snakemake \
96-
> snakemake-executor-plugin-slurm snakemake-storage-plugin-fs
95+
$ mamba create -c conda-forge -c bioconda -n snakemake \
96+
> snakemake snakemake-executor-plugin-slurm \
97+
> snakemake-storage-plugin-fs
9798
\end{lstlisting}
9899
This should install a \Snakemake{} environment with all necessary tools!
99100

0 commit comments

Comments
 (0)