Skip to content

Commit

Permalink
quick update
Browse files Browse the repository at this point in the history
  • Loading branch information
y9c committed Jul 29, 2023
1 parent 27757a3 commit 28d84f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ workdir: WORKDIR

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

REF = config["reference"]
Expand Down
Binary file modified bin/joinFastq
Binary file not shown.

0 comments on commit 28d84f8

Please sign in to comment.