mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
Fix CI test failure
This commit is contained in:
parent
6b873d7d33
commit
35ed09b06e
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ process MINIMAP2_ALIGN {
|
|||
script:
|
||||
def software = getSoftwareName(task.process)
|
||||
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
||||
def input_reads = meta.single_end ? "-r $reads" : "-1 ${reads[0]} -2 ${reads[1]}"
|
||||
def input_reads = meta.single_end ? "$reads" : "${reads[0]} ${reads[1]}"
|
||||
"""
|
||||
minimap2 \\
|
||||
$options.args \\
|
||||
|
|
Loading…
Reference in a new issue