diff --git a/Snakefile b/Snakefile index a077d21..a83e604 100644 --- a/Snakefile +++ b/Snakefile @@ -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"] diff --git a/bin/joinFastq b/bin/joinFastq index 0bd58e3..982eab4 100755 Binary files a/bin/joinFastq and b/bin/joinFastq differ