You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The way that snakemake works is that it starts by reading the Snakefile, then checking the files that the Snakefile points to.
# Each listed .smk file is evaluated to identify available rules and their relationships.
# This is why the (optional) rule all directive is placed in the Snakefile rather than in a separate .smk file: snakemake will read the Snakefile first, meaning "rule all" is triggered with highest priority.