mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
update multiqc and strelka modules version to have the same as the other modules using these ones (#1914)
* update multiqc version in CUSTOM_DUMPSOFTWAREVERSIONS * update stelka version in STRELKA_GERMLINE Co-authored-by: Alexander Peltzer <apeltzer@users.noreply.github.com>
This commit is contained in:
parent
6b011dd148
commit
e5b44499ef
2 changed files with 5 additions and 5 deletions
|
@ -2,10 +2,10 @@ process CUSTOM_DUMPSOFTWAREVERSIONS {
|
||||||
label 'process_low'
|
label 'process_low'
|
||||||
|
|
||||||
// Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container
|
// Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container
|
||||||
conda (params.enable_conda ? "bioconda::multiqc=1.12" : null)
|
conda (params.enable_conda ? 'bioconda::multiqc=1.13a' : 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/multiqc:1.12--pyhdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/multiqc:1.13a--pyhdfd78af_1' :
|
||||||
'quay.io/biocontainers/multiqc:1.12--pyhdfd78af_0' }"
|
'quay.io/biocontainers/multiqc:1.13a--pyhdfd78af_1' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
path versions
|
path versions
|
||||||
|
|
|
@ -4,8 +4,8 @@ process STRELKA_GERMLINE {
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::strelka=2.9.10" : null)
|
conda (params.enable_conda ? "bioconda::strelka=2.9.10" : 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/strelka:2.9.10--0' :
|
'https://depot.galaxyproject.org/singularity/strelka:2.9.10--h9ee0642_1' :
|
||||||
'quay.io/biocontainers/strelka:2.9.10--0' }"
|
'quay.io/biocontainers/strelka:2.9.10--h9ee0642_1' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(input), path(input_index), path (target_bed), path (target_bed_tbi)
|
tuple val(meta), path(input), path(input_index), path (target_bed), path (target_bed_tbi)
|
||||||
|
|
Loading…
Reference in a new issue