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 (#577)
This commit is contained in:
parent
bee23ba899
commit
9fb21e1a84
1 changed files with 3 additions and 3 deletions
|
@ -11,11 +11,11 @@ process GATK4_REVERTSAM {
|
||||||
mode: params.publish_dir_mode,
|
mode: params.publish_dir_mode,
|
||||||
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
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) {
|
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 {
|
} else {
|
||||||
container 'quay.io/biocontainers/gatk4:4.1.9.0--py39_0'
|
container "quay.io/biocontainers/gatk4:4.2.0.0--0"
|
||||||
}
|
}
|
||||||
|
|
||||||
input:
|
input:
|
||||||
|
|
Loading…
Reference in a new issue