Skip to content

Commit

Permalink
Fix broken Quast module and bump MultiQC version in dumpsoftwareversi…
Browse files Browse the repository at this point in the history
…ons (#2108)
  • Loading branch information
drpatelh authored Sep 27, 2022
1 parent 2a9a876 commit 82501fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 32 deletions.
6 changes: 3 additions & 3 deletions modules/custom/dumpsoftwareversions/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ process CUSTOM_DUMPSOFTWAREVERSIONS {
label 'process_single'

// Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container
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 versions
Expand Down
4 changes: 2 additions & 2 deletions modules/qualimap/rnaseq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ process QUALIMAP_RNASEQ {

script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
prefix = task.ext.prefix ?: "${meta.id}"
def paired_end = meta.single_end ? '' : '-pe'
def memory = task.memory.toGiga() + "G"

Expand Down Expand Up @@ -51,7 +51,7 @@ process QUALIMAP_RNASEQ {
"""

stub:
def prefix = task.ext.prefix ?: "${meta.id}"
prefix = task.ext.prefix ?: "${meta.id}"
"""
mkdir ${prefix}
Expand Down
4 changes: 0 additions & 4 deletions tests/config/pytest_modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2363,10 +2363,6 @@ tbprofiler/profile:
- modules/tbprofiler/profile/**
- tests/modules/tbprofiler/profile/**

test/template:
- modules/test/template/**
- tests/modules/test/template/**

tiddit/cov:
- modules/tiddit/cov/**
- tests/modules/tiddit/cov/**
Expand Down
23 changes: 0 additions & 23 deletions tests/config/pytest_modules_test.yml

This file was deleted.

0 comments on commit 82501fe

Please sign in to comment.