Fix CI test failure

This commit is contained in:
Michael L Heuer 2021-02-05 11:41:36 -06:00
parent 6b873d7d33
commit 35ed09b06e

View file

@ -29,7 +29,7 @@ process MINIMAP2_ALIGN {
script: script:
def software = getSoftwareName(task.process) def software = getSoftwareName(task.process)
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}" 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 \\ minimap2 \\
$options.args \\ $options.args \\