Skip to content

Commit

Permalink
fix: if report files are within storage, retrieve them from storage b…
Browse files Browse the repository at this point in the history
…efore loading into report
  • Loading branch information
johanneskoester committed Feb 1, 2024
1 parent 0e5b878 commit 60041bd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions snakemake/report/__init__.py
Expand Up @@ -628,6 +628,8 @@ def register_file(
)
recorded_files.add(f)

if f.is_storage:
await f.retrieve_from_storage()
if os.path.isfile(f):
register_file(f)
elif os.path.isdir(f):
Expand Down

0 comments on commit 60041bd

Please sign in to comment.