Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
alefisico committed Nov 13, 2024
1 parent 581d302 commit 966df63
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions episodes/Snakemake.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ snakemake --snakefile Snakefile --configfile config.yaml --dry-run
```

Each part of this command serves a specific purpose:
* `--snakefile`: This flag specifies the path to the Snakefile, which contains the definitions of the rules and their dependencies.
* `--configfile`: This flag indicates the path to the configuration file (YAML format) where you can define parameters and variables that can be used within the Snakefile. (It is not mandatory.)
* `--dry-run`: This flag tells Snakemake to simulate the workflow execution without actually running the commands. It's useful for visualizing the execution order of rules and identifying potential issues before running the actual workflow.
* `--snakefile`: This flag specifies the path to the Snakefile, which contains the definitions of the rules and their dependencies.
* `--configfile`: This flag indicates the path to the configuration file (YAML format) where you can define parameters and variables that can be used within the Snakefile. (It is not mandatory.)
* `--dry-run`: This flag tells Snakemake to simulate the workflow execution without actually running the commands. It's useful for visualizing the execution order of rules and identifying potential issues before running the actual workflow.


::::::::::::::::::::::::::: OUTPUT
::::::::::::::::::::::::::: output

Check warning on line 143 in episodes/Snakemake.md

View workflow job for this annotation

GitHub Actions / Build Full Site

[unknown div] output
Config file config.yaml is extended by additional config specified via the command line.
Building DAG of jobs...
Job stats:
Expand Down

0 comments on commit 966df63

Please sign in to comment.