diff --git a/src/nf_modules/samtools/main.nf b/src/nf_modules/samtools/main.nf
index 0ccc1dfe080b489180653c4be751675bcfc6ef05..3e659ce891e7ff49870d758fe8357843be08b0bc 100644
--- a/src/nf_modules/samtools/main.nf
+++ b/src/nf_modules/samtools/main.nf
@@ -208,7 +208,7 @@ process flagstat_2_multiqc {
     tuple val(file_id), path(tsv), emit: tsv
 
   output:
-    tuple val(file_id), path("*.txt"), emit: report
+    path "*.txt" , emit: report
 """
 mv ${tsv} ${tsv.simpleName}.flagstat.txt
 """
@@ -221,7 +221,7 @@ process idxstat_2_multiqc {
     tuple val(file_id), path(tsv), emit: tsv
 
   output:
-    tuple val(file_id), path("*.txt"), emit: report
+    path "*.txt", emit: report
 """
 mv ${tsv} ${tsv.simpleName}.idxstats.txt
 """