Skip to content

Commit

Permalink
Remove missed lambda from advanced tutorial (#1238)
Browse files Browse the repository at this point in the history
The lambda used in the `bwa_map` rule was replaced with a named function
in #911, but this single occurrence was missed
  • Loading branch information
mx-moth committed Nov 8, 2021
1 parent 4816a58 commit 01d6102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorial/advanced.rst
Expand Up @@ -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:
Expand Down

0 comments on commit 01d6102

Please sign in to comment.