Combine output after code review

This commit is contained in:
Rike 2022-05-09 16:04:58 +02:00
parent 24d5e7feed
commit 1de1c2253e
2 changed files with 6 additions and 11 deletions

View file

@ -13,8 +13,7 @@ process SAMTOOLS_CONVERT {
path fai
output:
tuple val(meta), path("*.cram"), path("*.crai") , emit: cram_crai, optional: true
tuple val(meta), path("*.bam"), path("*.bai") , emit: bam_bai, optional:true
tuple val(meta), path("*.{cram,bam}"), path("*.{crai,bai}") , emit: aligned_index
path "versions.yml" , emit: versions
when:
@ -22,7 +21,7 @@ process SAMTOOLS_CONVERT {
script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
prefix = task.ext.prefix ?: "${meta.id}"
def file_type = input.getExtension() == "bam" ? "cram" : "bam"
"""

View file

@ -39,14 +39,10 @@ output:
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- cram_crai:
- aligned_index:
type: file
description: filtered/converted CRAM file + index
pattern: "*{.cram,.crai}"
- bam_bai:
type: file
description: filtered/converted BAM file + index
pattern: "*{.bam,.bai}"
description: filtered/converted BAM/CRAM file + index
pattern: "*{.bam/cram,.bai/crai}"
- version:
type: file
description: File containing software version