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

samtools: fix output for multiqc process

parent 309f80d7
No related branches found
No related tags found
No related merge requests found
......@@ -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
"""
......
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