mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
a0d91e4a93
* add picard-addorreplacereadgroups * add picard_addorreplacereadgroups * add new line to main.nf * remove trailing whitespaces * remove trailing whitespaces * change to output in test yml * add when directive * picard 2.26.10 -> 2.26.9 * picard 2.26.10 -> 2.26.9 test yml Co-authored-by: Peri <rrx8@cdc.gov> Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: picard_addorreplacereadgroups
|
|
description: Assigns all the reads in a file to a single new read-group
|
|
keywords:
|
|
- add
|
|
- replace
|
|
- read-group
|
|
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/360037226472-AddOrReplaceReadGroups-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 ]
|
|
- bam:
|
|
type: file
|
|
description: Input 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"
|
|
- bam:
|
|
type: file
|
|
description: Output BAM file
|
|
pattern: "*.{bam}"
|
|
|
|
authors:
|
|
- "@sateeshperi"
|
|
- "@mjcipriano"
|
|
- "@hseabolt"
|