mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
fixed container definitions
This commit is contained in:
parent
77d825e043
commit
1c7205d683
2 changed files with 8 additions and 8 deletions
|
@ -2,10 +2,10 @@ process MD5SUM {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_low'
|
label 'process_low'
|
||||||
|
|
||||||
if (params.enable_conda) {
|
conda (params.enable_conda ? "conda-forge::coreutils=8.25" : null)
|
||||||
exit 1, "Conda environments cannot be used when using md5sum. Please use docker or singularity containers."
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
}
|
'https://depot.galaxyproject.org/singularity/coreutils:8.31--h14c3975_0' :
|
||||||
container "debian:bullseye-slim"
|
'quay.io/biocontainers/coreutils:8.31--h14c3975_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(file)
|
tuple val(meta), path(file)
|
||||||
|
|
|
@ -2,10 +2,10 @@ process SHASUM {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_low'
|
label 'process_low'
|
||||||
|
|
||||||
if (params.enable_conda) {
|
conda (params.enable_conda ? "conda-forge::coreutils=8.25" : null)
|
||||||
exit 1, "Conda environments cannot be used when using sha256sum. Please use docker or singularity containers."
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
}
|
'https://depot.galaxyproject.org/singularity/coreutils:8.31--h14c3975_0' :
|
||||||
container "debian:bullseye-slim"
|
'quay.io/biocontainers/coreutils:8.31--h14c3975_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(file)
|
tuple val(meta), path(file)
|
||||||
|
|
Loading…
Reference in a new issue