Skip to content
Snippets Groups Projects
Unverified Commit 8de512aa authored by Dmitry Kalinkin's avatar Dmitry Kalinkin Committed by GitHub
Browse files

Snakefile: fix caching in fetch_epic (#78)

parent 81160474
Branches
Tags
No related merge requests found
......@@ -34,6 +34,9 @@ def get_remote_path(path):
rule fetch_epic:
output:
filepath="EPIC/{PATH}"
params:
# wildcards are not included in hash for caching, we need to add them as params
PATH=lambda wildcards: wildcards.PATH
cache: True
retries: 3
shell: """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment