diff --git a/01-introduction.html b/01-introduction.html index fcbff56..06a5064 100644 --- a/01-introduction.html +++ b/01-introduction.html @@ -569,7 +569,7 @@

Running Snakemake

-
+
  1. Prints the shell commands that are being run to the terminal

This is such a useful thing we don’t know why it isn’t the default! @@ -624,7 +624,7 @@

Counting sequences in Snakemake

-
+
rule countreads:
     output: "ref1_1.fq.count"
@@ -657,7 +657,7 @@ 

Counting sequences in Snakemake -
+

You can choose whatever name you like for this second rule, but it can’t be “countreads” as rule names need to be unique within a diff --git a/02-placeholders.html b/02-placeholders.html index 02fb1e1..eda7088 100644 --- a/02-placeholders.html +++ b/02-placeholders.html @@ -534,7 +534,7 @@

Running the general-purpose rule

-
+

After editing the file, run the commands:

@@ -574,7 +574,7 @@

Choosing the right wildcards

-
+

In all cases, there is no need to change the shell part of the rule at all.

@@ -702,7 +702,7 @@

BASH

Show me the solution

-
+
# Trim any FASTQ reads for base quality
 rule trimreads:
diff --git a/05-the_dag.html b/05-the_dag.html
index e6cb418..ffdad78 100644
--- a/05-the_dag.html
+++ b/05-the_dag.html
@@ -490,7 +490,7 @@ 

How many jobs?

-
+

10 in total: 3 * kallisto_quant // 6 * trimreads // 1 * kallisto_index // 0 * countreads

@@ -693,7 +693,7 @@

Visualising the effect of the -R -
+

This is a way to make the Kallisto result in the first place:

diff --git a/06-expansion.html b/06-expansion.html index dec97b5..a469d81 100644 --- a/06-expansion.html +++ b/06-expansion.html @@ -566,7 +566,7 @@

Counting all the reads

-
+

This will work.

# Input conditions and replicates to process
@@ -651,7 +651,7 @@ 

Combining the inputs of the -
+
rule all_counts:
     input:
@@ -771,7 +771,7 @@ 

‘Globbing’ the list of samples

-
+

PYTHON @@ -807,7 +807,7 @@

‘Globbing’ the list of samples -
+

PYTHON diff --git a/07-awkward_programs.html b/07-awkward_programs.html index a44ee6d..bc1d875 100644 --- a/07-awkward_programs.html +++ b/07-awkward_programs.html @@ -530,7 +530,7 @@

Adding a FastQC rule using the default output file nam -
+

Since the shell command is not to be changed, the output names will be dictated by FastQC as we saw when running the command @@ -586,7 +586,7 @@

OUTPUT