Skip to content
Snippets Groups Projects
Unverified Commit 30d17edc authored by Laurent Modolo's avatar Laurent Modolo
Browse files

bedtools: bam_to_fastq emits tuple

parent 8338d66f
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ process bam_to_fastq_singleend {
path bam
output:
path "*.fastq", emit: fastq
tuple val(bam.baseName), path("*.fastq"), emit: fastq
script:
"""
......@@ -50,7 +50,7 @@ process bam_to_fastq_pairedend {
path bam
output:
path "*.fastq", emit: fastq
tuple val(bam.baseName), path("*.fastq"), emit: fastq
script:
"""
......
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