Skip to content

Commit

Permalink
Snakefile: fix caching in fetch_epic (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
veprbl authored Oct 7, 2024
1 parent 8116047 commit 8de512a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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: """
Expand Down

0 comments on commit 8de512a

Please sign in to comment.