Snakefile. If you would like to override that you can specify it following the -s
snakemake -s snakefile.pyRun the snakemake file as a dry run (the example workflow shown above).
snakemake --dry-runUser can execute rules of interest.
snakemake --dry-run all VS. snakemake --dry-run call VS. snakemake --dry-run bwaRun 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.svgRun the snakemake (this time not as a dry run)
snakemake --use-conda