From 801181a265920e409afac5b4ca0ee31b62610235 Mon Sep 17 00:00:00 2001 From: Julianus Pfeuffer Date: Sun, 24 Nov 2024 20:01:10 +0100 Subject: [PATCH] fix openms singularity url in dev.conf --- conf/dev.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/dev.config b/conf/dev.config index 45a8f34d..9ae25bb4 100644 --- a/conf/dev.config +++ b/conf/dev.config @@ -19,6 +19,6 @@ params { process { withLabel: openms { conda = "openms::openms-thirdparty=3.2.0" - container = {"${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? 'ghcr.io/openms/openms-executables-sif:latest' : 'ghcr.io/openms/openms-executables:latest' }"} + container = {"${ ( workflow.containerEngine == 'singularity' || workflow.containerEngine == 'apptainer' ) && !task.ext.singularity_pull_docker_container ? 'oras://ghcr.io/openms/openms-tools-thirdparty-sif:latest' : 'ghcr.io/openms/openms-tools-thirdparty:latest' }"} } }