Skip to content

Commit

Permalink
supoort relhome is curve
Browse files Browse the repository at this point in the history
  • Loading branch information
y9c committed Jul 28, 2023
1 parent 17fce8e commit 3f1875b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ workdir: WORKDIR


CALI = config.get("calibration_curves", "")
CALI = CALI if os.path.isabs(CALI) else os.path.relpath(CALI, WORKDIR)
CALI = (
CALI if os.path.isabs(CALI) else os.path.relpath(os.path.expanduser(CALI), WORKDIR)
)

REF = config["reference"]
for k, v in REF.items():
Expand Down

0 comments on commit 3f1875b

Please sign in to comment.