mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: picard_cleansam
|
|
description: Cleans the provided BAM, soft-clipping beyond-end-of-reference alignments and setting MAPQ to 0 for unmapped reads
|
|
keywords:
|
|
- clean
|
|
- bam
|
|
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://gatk.broadinstitute.org/hc/en-us/articles/360036491452-CleanSam-Picard-
|
|
tool_dev_url: https://github.com/broadinstitute/picard
|
|
licence: ["MIT"]
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- sam:
|
|
type: file
|
|
description: BAM file
|
|
pattern: "*.{bam}"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- sam:
|
|
type: file
|
|
description: Cleaned BAM file
|
|
pattern: "*.{bam}"
|
|
|
|
authors:
|
|
- "@sateeshperi"
|
|
- "@mjcipriano"
|
|
- "@hseabolt"
|