In the version of Snakemake that I have just updated to (7.15.2), "snakemake -n" will return the "Reason" for each job. This could be for example "input files updated by another job", "missing output files" or "updated input files". I only want to run jobs where the reason is "missing output files", and ignore all jobs that have any other reason. In a previous version of Snakemake (7.3.2), there was some command line flag like "--rerun-triggers-mtime" or something (can't remember exactly what) that allowed this.
How can i do this on snakemake 7.15.2?