2020-08-07 15:39:16 +00:00
|
|
|
name: picard_mergesamfiles
|
|
|
|
description: Merges multiple BAM files into a single file
|
|
|
|
keywords:
|
2022-02-15 11:15:27 +00:00
|
|
|
- merge
|
|
|
|
- alignment
|
|
|
|
- bam
|
|
|
|
- sam
|
2020-08-07 15:39:16 +00:00
|
|
|
tools:
|
2022-02-15 11:15:27 +00:00
|
|
|
- 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:
|
2022-02-15 11:15:27 +00:00
|
|
|
- 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:
|
2022-02-15 11:15:27 +00:00
|
|
|
- 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:
|
2022-02-15 11:15:27 +00:00
|
|
|
- "@drpatelh"
|