2020-08-07 15:30:28 +00:00
|
|
|
name: picard_markduplicates
|
|
|
|
description: Locate and tag duplicate reads in a BAM file
|
|
|
|
keywords:
|
2021-09-15 09:02:28 +00:00
|
|
|
- markduplicates
|
|
|
|
- pcr
|
|
|
|
- duplicates
|
|
|
|
- bam
|
|
|
|
- sam
|
|
|
|
- cram
|
2020-08-07 15:30:28 +00:00
|
|
|
tools:
|
2021-09-15 09:02:28 +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/
|
2022-02-15 11:15:27 +00:00
|
|
|
licence: ["MIT"]
|
2020-08-07 15:30:28 +00:00
|
|
|
input:
|
2021-09-15 09:02:28 +00:00
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- bam:
|
|
|
|
type: file
|
|
|
|
description: BAM file
|
|
|
|
pattern: "*.{bam}"
|
2020-08-07 15:30:28 +00:00
|
|
|
output:
|
2021-09-15 09:02:28 +00:00
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- bam:
|
|
|
|
type: file
|
|
|
|
description: BAM file with duplicate reads marked/removed
|
|
|
|
pattern: "*.{bam}"
|
|
|
|
- bai:
|
|
|
|
type: file
|
|
|
|
description: An optional BAM index file. If desired, --CREATE_INDEX must be passed as a flag
|
|
|
|
pattern: "*.{bai}"
|
|
|
|
- metrics:
|
|
|
|
type: file
|
|
|
|
description: Duplicate metrics file generated by picard
|
|
|
|
pattern: "*.{metrics.txt}"
|
2021-10-03 07:20:26 +00:00
|
|
|
- versions:
|
2021-09-15 09:02:28 +00:00
|
|
|
type: file
|
2021-10-03 07:20:26 +00:00
|
|
|
description: File containing software versions
|
2021-09-27 08:41:24 +00:00
|
|
|
pattern: "versions.yml"
|
2020-08-07 15:30:28 +00:00
|
|
|
authors:
|
2021-09-15 09:02:28 +00:00
|
|
|
- "@drpatelh"
|
|
|
|
- "@projectoriented"
|