Any rule in a Snakefile which is run as a local rule does not get included in snakemake.log.jobby files. These rules start with localrule <rule_name> rather than rule <rule_name>. Missing these rules gives an inaccurate overview of the workflow log. It would be helpful to include them with their job status and just fill in NAs for columns that can't be known e.g. any cluster-specific stats.
Any rule in a Snakefile which is run as a local rule does not get included in
snakemake.log.jobby
files. These rules start withlocalrule <rule_name>
rather thanrule <rule_name>
. Missing these rules gives an inaccurate overview of the workflow log. It would be helpful to include them with their job status and just fill inNA
s for columns that can't be known e.g. any cluster-specific stats.