Apply suggestions from code review

Co-authored-by: Mahesh Binzer-Panchal <mahesh.binzer-panchal@nbis.se>
This commit is contained in:
Matthias De Smet 2022-06-08 14:24:55 +02:00 committed by GitHub
parent 71e3056813
commit 100b3f244c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -21,7 +21,7 @@ process MULTIQC {
script:
def args = task.ext.args ?: ''
def config = multiqc_config ?: '--config $multiqc_config'
def config = multiqc_config ?: "--config $multiqc_config"
"""
multiqc \
--force \

View file

@ -16,9 +16,10 @@ workflow test_multiqc {
}
workflow test_multiqc_fn_collision {
fqc_input = [ [ id: 'test', single_end: false ],
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)]
]
fqc_input = [
[ id: 'test', single_end: false ],
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)]
]
mqc_input = Channel.empty()
FASTQC ( fqc_input )