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
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,9 @@ def get_remote_path(path): ...@@ -34,6 +34,9 @@ def get_remote_path(path):
rule fetch_epic: rule fetch_epic:
output: output:
filepath="EPIC/{PATH}" 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 cache: True
retries: 3 retries: 3
shell: """ shell: """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment