mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
fix: update to gatk4.2.0.0 (#578)
This commit is contained in:
parent
9fb21e1a84
commit
e7be649029
1 changed files with 3 additions and 3 deletions
|
@ -11,11 +11,11 @@ process GATK4_MERGEVCFS {
|
|||
mode: params.publish_dir_mode,
|
||||
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
||||
|
||||
conda (params.enable_conda ? 'bioconda::gatk4=4.1.9.0' : null)
|
||||
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0" : null)
|
||||
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
||||
container 'https://depot.galaxyproject.org/singularity/gatk4:4.1.9.0--py39_0'
|
||||
container "https://depot.galaxyproject.org/singularity/gatk4:4.2.0.0--0"
|
||||
} else {
|
||||
container 'quay.io/biocontainers/gatk4:4.1.9.0--py39_0'
|
||||
container "quay.io/biocontainers/gatk4:4.2.0.0--0"
|
||||
}
|
||||
|
||||
input:
|
||||
|
|
Loading…
Reference in a new issue