From 9c9cf82d522871805d9446476a072de0a575686e Mon Sep 17 00:00:00 2001
From: Laurent Modolo <laurent.modolo@ens-lyon.fr>
Date: Wed, 14 Apr 2021 17:32:49 +0200
Subject: [PATCH] fastp: fix variable name in fastp_accel_1splus

---
 src/nf_modules/fastp/main.nf | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/nf_modules/fastp/main.nf b/src/nf_modules/fastp/main.nf
index 6d8dc759..14a4391d 100644
--- a/src/nf_modules/fastp/main.nf
+++ b/src/nf_modules/fastp/main.nf
@@ -88,12 +88,12 @@ process fastp_accel_1splus {
   }
 
   input:
-  tuple val(file_prefix), path(reads)
+  tuple val(file_id), path(reads)
 
   output:
-    tuple val(file_prefix), path("*.fastq.gz"), emit: fastq
-    tuple val(file_prefix), path("*.html"), emit: html
-    tuple val(file_prefix), path("*.json"), emit: report
+    tuple val(file_id), path("*.fastq.gz"), emit: fastq
+    tuple val(file_id), path("*.html"), emit: html
+    tuple val(file_id), path("*.json"), emit: report
 
   script:
   if (file_id instanceof List){
-- 
GitLab