Skip to content

Commit

Permalink
Fix simple typos in code examples
Browse files Browse the repository at this point in the history
A comma was missing between arguments in several code blocks.
  • Loading branch information
koen-vg committed Jan 11, 2022
1 parent 987282d commit f1dd06d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/snakefiles/deployment.rst
Expand Up @@ -71,7 +71,7 @@ Consider the following example:
module dna_seq:
snakefile:
# here, it is also possible to provide a plain raw URL like "https://github.com/snakemake-workflows/dna-seq-gatk-variant-calling/raw/v2.0.1/workflow/Snakefile"
github("snakemake-workflows/dna-seq-gatk-variant-calling", path="workflow/Snakefile" tag="v2.0.1")
github("snakemake-workflows/dna-seq-gatk-variant-calling", path="workflow/Snakefile", tag="v2.0.1")
config:
config
Expand Down Expand Up @@ -100,7 +100,7 @@ For example, we can easily add another rule to extend the given workflow:
module dna_seq:
snakefile:
# here, it is also possible to provide a plain raw URL like "https://github.com/snakemake-workflows/dna-seq-gatk-variant-calling/raw/v2.0.1/workflow/Snakefile"
github("snakemake-workflows/dna-seq-gatk-variant-calling", path="workflow/Snakefile" tag="v2.0.1")
github("snakemake-workflows/dna-seq-gatk-variant-calling", path="workflow/Snakefile", tag="v2.0.1")
config: config
use rule * from dna_seq
Expand All @@ -127,7 +127,7 @@ We can extend above example in the following way:
module dna_seq:
snakefile:
github("snakemake-workflows/dna-seq-gatk-variant-calling", path="workflow/Snakefile" tag="v2.0.1")
github("snakemake-workflows/dna-seq-gatk-variant-calling", path="workflow/Snakefile", tag="v2.0.1")
config: config["dna-seq"]
prefix: "dna-seq"
Expand All @@ -143,7 +143,7 @@ We can extend above example in the following way:
module rna_seq:
snakefile:
github("snakemake-workflows/rna-seq-kallisto-sleuth", path="workflow/Snakefile" tag="v2.0.1")
github("snakemake-workflows/rna-seq-kallisto-sleuth", path="workflow/Snakefile", tag="v2.0.1")
config: config["rna-seq"]
prefix: "rna-seq"
Expand Down

0 comments on commit f1dd06d

Please sign in to comment.