mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
Updated modules with the changed container format
This commit is contained in:
parent
6677c98b11
commit
89e5473b44
2 changed files with 5 additions and 12 deletions
|
@ -10,12 +10,8 @@ process BEDTOOLS_COMPLEMENT {
|
|||
mode: params.publish_dir_mode,
|
||||
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
||||
|
||||
conda (params.enable_conda ? "bioconda::bedtools =2.29.2" : null)
|
||||
if (workflow.containerEngine == 'singularity' && !params.pull_docker_container) {
|
||||
container "https://depot.galaxyproject.org/singularity/bedtools:2.29.2--hc088bd4_0 "
|
||||
} else {
|
||||
container "quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0"
|
||||
}
|
||||
conda (params.enable_conda ? "bioconda::bedtools =2.29.2" : null)
|
||||
container "quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0"
|
||||
|
||||
input:
|
||||
tuple val(meta), path(beds)
|
||||
|
|
|
@ -10,12 +10,9 @@ process BEDTOOLS_SLOP {
|
|||
mode: params.publish_dir_mode,
|
||||
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
||||
|
||||
conda (params.enable_conda ? "bioconda::bedtools =2.29.2" : null)
|
||||
if (workflow.containerEngine == 'singularity' && !params.pull_docker_container) {
|
||||
container "https://depot.galaxyproject.org/singularity/bedtools:2.29.2--hc088bd4_0 "
|
||||
} else {
|
||||
container "quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0"
|
||||
}
|
||||
conda (params.enable_conda ? "bioconda::bedtools =2.29.2" : null)
|
||||
container "quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0"
|
||||
|
||||
|
||||
input:
|
||||
tuple val(meta), path(beds)
|
||||
|
|
Loading…
Reference in a new issue