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
Branches
Tags
No related merge requests found
...@@ -31,7 +31,7 @@ process bam_to_fastq_singleend { ...@@ -31,7 +31,7 @@ process bam_to_fastq_singleend {
path bam path bam
output: output:
path "*.fastq", emit: fastq tuple val(bam.baseName), path("*.fastq"), emit: fastq
script: script:
""" """
...@@ -50,7 +50,7 @@ process bam_to_fastq_pairedend { ...@@ -50,7 +50,7 @@ process bam_to_fastq_pairedend {
path bam path bam
output: output:
path "*.fastq", emit: fastq tuple val(bam.baseName), path("*.fastq"), emit: fastq
script: script:
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment