mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Fix conda version declaration
This commit is contained in:
parent
50b98d56a1
commit
e9fc285967
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ process CUTADAPT {
|
|||
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::cutadapt:3.2' : null)
|
||||
conda (params.enable_conda ? 'bioconda::cutadapt=3.2' : null)
|
||||
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
||||
container 'https://depot.galaxyproject.org/singularity/cutadapt:3.2--py38h0213d0e_0'
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue