diff --git a/CHANGELOG.md b/CHANGELOG.md index 11b8a3b..f184128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # LOGAN development version +- LOGAN now depends on ccbr_tools v0.4 for updated jobby & spooker utilities. (#95, @kelly-sovacool) - Fix fastq naming in fastp. (#73, @dnousome) - Fix resources for qualimap bamqc. (#79, @dnousome) - Now using the readthedocs theme for the docs website. (#84, @kelly-sovacool) diff --git a/lib/Utils.groovy b/lib/Utils.groovy index 4854446..4434df6 100644 --- a/lib/Utils.groovy +++ b/lib/Utils.groovy @@ -8,7 +8,7 @@ class Utils { if (spooker_in_path) { try { println "Running spooker" - def spooker_command = "spooker ${workflow.launchDir} ${pipeline_name} ${workflow.manifest.version}" + def spooker_command = "spooker --outdir ${workflow.launchDir} --name ${pipeline_name} --version ${workflow.manifest.version} --path ${workflow.projectDir}" def command = spooker_command.execute() command.consumeProcessOutput(out, err) command.waitFor() diff --git a/pyproject.toml b/pyproject.toml index 643e89b..f4f862b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ classifiers = [ ] requires-python = ">=3.10" dependencies = [ - "ccbr_tools@git+https://github.com/CCBR/Tools@v0.3", + "ccbr_tools@git+https://github.com/CCBR/Tools@v0.4", "cffconvert >= 2.0.0", "Click >= 8.1.3", "pyyaml >= 6.0"