Snakefile
. If you would like to override that you can specify it following the -s
snakemake -s snakefile.py
Run the snakemake file as a dry run (the example workflow shown above).
snakemake --dry-run
User can execute rules of interest.
snakemake --dry-run all
VS. snakemake --dry-run call
VS. snakemake --dry-run bwa
Run the snakemake file in order to produce an image of the DAG of jobs to be run.
snakemake --dag | dot -Tsvg > dag.svg
OR snakemake --dag | dot -Tsvg > dag.svg
Run the snakemake (this time not as a dry run)
snakemake --use-conda