Skip to content
Snippets Groups Projects
Verified Commit 9c9cf82d authored by Laurent Modolo's avatar Laurent Modolo
Browse files

fastp: fix variable name in fastp_accel_1splus

parent 9365b6e3
No related branches found
No related tags found
No related merge requests found
...@@ -88,12 +88,12 @@ process fastp_accel_1splus { ...@@ -88,12 +88,12 @@ process fastp_accel_1splus {
} }
input: input:
tuple val(file_prefix), path(reads) tuple val(file_id), path(reads)
output: output:
tuple val(file_prefix), path("*.fastq.gz"), emit: fastq tuple val(file_id), path("*.fastq.gz"), emit: fastq
tuple val(file_prefix), path("*.html"), emit: html tuple val(file_id), path("*.html"), emit: html
tuple val(file_prefix), path("*.json"), emit: report tuple val(file_id), path("*.json"), emit: report
script: script:
if (file_id instanceof List){ if (file_id instanceof List){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment