nf-core_modules/modules/picard/mergesamfiles/meta.yml

42 lines
1.1 KiB
YAML
Raw Normal View History

2020-08-07 15:39:16 +00:00
name: picard_mergesamfiles
description: Merges multiple BAM files into a single file
keywords:
- merge
- alignment
- bam
- sam
2020-08-07 15:39:16 +00:00
tools:
- picard:
description: |
A set of command line tools (in Java) for manipulating high-throughput sequencing (HTS)
data and formats such as SAM/BAM/CRAM and VCF.
homepage: https://broadinstitute.github.io/picard/
documentation: https://broadinstitute.github.io/picard/
licence: ["MIT"]
2020-08-07 15:39:16 +00:00
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- bam:
type: file
description: List of BAM files
pattern: "*.{bam}"
2020-08-07 15:39:16 +00:00
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- bam:
type: file
description: Merged BAM file
pattern: "*.{bam}"
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
2020-08-07 15:39:16 +00:00
authors:
- "@drpatelh"