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
shell.executable("bash")
shell("touch C && sleep 1 && touch B && sleep 1 && touch A && touch D && \
mkdir -p .snakemake/storage/http/github.com/snakemake/snakemake/raw/series-7/tests/test_remote_http/expected-results && \
touch .snakemake/storage/http/github.com/snakemake/snakemake/raw/series-7/tests/test_remote_http/expected-results/landsat-data.txt && \
touch -t 200101010101 old_file")
#Will not be executed even though A is newer
rule a:
input:
ancient("A")
output:
"B"
shell:
"echo \"B recreated\" > {output}"
#Will be executed because B is newer
rule b:
input:
"B"
output:
"C"
shell:
"echo \"C recreated\" > {output}"
rule c:
input:
ancient("C")
output:
"D"
shell:
"echo \"D recreated\" > {output}"
# This should not run even though output is older than input
rule remote_ancient:
input:
storage(
"https://github.com/snakemake/snakemake/raw/series-7/tests/test_remote_http/expected-results/landsat-data.txt"
)
output:
"old_file"
shell:
"cp {input} {output}"
Also 'github', 'gitfile', 'gitlab'
See registration in snakemake/workflow.py :
Also 'github', 'gitfile', 'gitlab'
See registration in
snakemake/workflow.py
:The text was updated successfully, but these errors were encountered: