Skip to content
This repository has been archived by the owner on Jan 21, 2025. It is now read-only.

Commit

Permalink
add link to log
Browse files Browse the repository at this point in the history
  • Loading branch information
nebfield committed Nov 29, 2023
1 parent 97f7e76 commit 3d41f9c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pgscatalog_utils/samplesheet/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,11 @@ def _resolve_paths(path_list: list[str], filetype: str) -> list[str]:
resolved_list.append(str(resolved))
else:
logger.critical(
f"{resolved} doesn't exist, please check samplesheet path_prefix and try again")
f"{resolved} doesn't exist, please check samplesheet path_prefix and try again"
)
logger.critical(
"If you're 100% sure this file exists and you're confused by this error, please check https://pgsc-calc.readthedocs.io/en/latest/how-to/mount.html"
)
raise FileNotFoundError

return resolved_list
Expand Down

0 comments on commit 3d41f9c

Please sign in to comment.