mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 02:58:17 +00:00
fix software definitions
This commit is contained in:
parent
1c7205d683
commit
bd1b80f36e
2 changed files with 6 additions and 6 deletions
|
@ -2,10 +2,10 @@ process MD5SUM {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_low'
|
label 'process_low'
|
||||||
|
|
||||||
conda (params.enable_conda ? "conda-forge::coreutils=8.25" : null)
|
conda (params.enable_conda ? "conda-forge::coreutils=9.1" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/coreutils:8.31--h14c3975_0' :
|
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
|
||||||
'quay.io/biocontainers/coreutils:8.31--h14c3975_0' }"
|
'ubuntu:20.04' }"
|
||||||
|
|
||||||
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'
|
||||||
|
|
||||||
conda (params.enable_conda ? "conda-forge::coreutils=8.25" : null)
|
conda (params.enable_conda ? "conda-forge::coreutils=9.1" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/coreutils:8.31--h14c3975_0' :
|
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
|
||||||
'quay.io/biocontainers/coreutils:8.31--h14c3975_0' }"
|
'ubuntu:20.04' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(file)
|
tuple val(meta), path(file)
|
||||||
|
|
Loading…
Reference in a new issue