mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Apply suggestions from code review
Co-authored-by: Mahesh Binzer-Panchal <mahesh.binzer-panchal@nbis.se>
This commit is contained in:
parent
71e3056813
commit
100b3f244c
2 changed files with 5 additions and 4 deletions
|
@ -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 \
|
||||
|
|
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue