From 01d6102795c96ce695d6d7201f7e4655a1d5cac8 Mon Sep 17 00:00:00 2001 From: Tim Heap Date: Tue, 9 Nov 2021 01:14:12 +1100 Subject: [PATCH] Remove missed lambda from advanced tutorial (#1238) The lambda used in the `bwa_map` rule was replaced with a named function in #911, but this single occurrence was missed --- docs/tutorial/advanced.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/advanced.rst b/docs/tutorial/advanced.rst index 388614c4d..df5d20544 100644 --- a/docs/tutorial/advanced.rst +++ b/docs/tutorial/advanced.rst @@ -192,7 +192,7 @@ We modify the rule ``bwa_map`` accordingly: rule bwa_map: input: "data/genome.fa", - lambda wildcards: config["samples"][wildcards.sample] + get_bwa_map_input_fastqs output: "mapped_reads/{sample}.bam" params: