Skip to content

Commit

Permalink
Fix typo and add details to snakemake cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
johnne committed Nov 26, 2024
1 parent fc63851 commit ee77f11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/snakemake.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -1700,7 +1700,7 @@ Now change the `multiqc` and `generate_count_table` rules that use the `expand`
```python
input:
expand("results/fastqc/{sample_id}_fastqc.zip",
sample_id = config["samples"].keys())
sample_id = config["samples"].keys()
```
Try to change the `generate_count_table` rule in the same way. Check the solution below if you need help.
Expand Down Expand Up @@ -2117,7 +2117,7 @@ rule align_to_genome:
Start your Snakemake workflow with the following command:
```bash
snakemake --software-deployment-method apptainer
snakemake --configfile config.yml -s snakefile_mrsa.smk -c 1 --software-deployment-method apptainer
```
Feel free to modify the MRSA workflow according to this example. As Apptainer is
Expand Down

0 comments on commit ee77f11

Please sign in to comment.