【发布时间】:2020-06-16 23:19:51
【问题描述】:
我想知道 snakemake 决定需要执行一项工作所需的所有必要条件,但我在 their documentation 中找不到它们。我找到的最好的来源是snakemake作者的slides from 2016,上面写着:
A job is executed if and only if
- output file is target and does not exist
- output file needed by another executed job and does not exist
- input file newer than output file
- input file will be updated by other job
- execution is enforced
但从那以后他似乎不再使用那张幻灯片,这让我想知道上述标准现在是否已经改变。
【问题讨论】:
标签: snakemake