mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Multiqc v1.13 release update (by @robsyme) (#2047)
* Updating MultiQC to released v1.13 Now using released MultiQC version: https://github.com/ewels/MultiQC/releases/tag/v1.13 * Update MultiQC conda environment to v1.13 Co-authored-by: Robert Syme <rob.syme@gmail.com>
This commit is contained in:
parent
d75b37fef1
commit
5587389874
1 changed files with 3 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
|||
process MULTIQC {
|
||||
label 'process_medium'
|
||||
|
||||
conda (params.enable_conda ? 'bioconda::multiqc=1.13a' : null)
|
||||
conda (params.enable_conda ? 'bioconda::multiqc=1.13' : null)
|
||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||
'https://depot.galaxyproject.org/singularity/multiqc:1.13a--pyhdfd78af_1' :
|
||||
'quay.io/biocontainers/multiqc:1.13a--pyhdfd78af_1' }"
|
||||
'https://depot.galaxyproject.org/singularity/multiqc:1.13--pyhdfd78af_0' :
|
||||
'quay.io/biocontainers/multiqc:1.13--pyhdfd78af_0' }"
|
||||
|
||||
input:
|
||||
path multiqc_files, stageAs: "?/*"
|
||||
|
|
Loading…
Reference in a new issue