mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
dc95e67e15
* add bamsormadup * fix yaml * add test.yml * Update tests/modules/biobambam/bamsormadup/test.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * test meta.yaml: remove md5sums * Tool bamsormadup: - add (optional) reference input - add bam index ouput - add cram output option - make metrics output: more general * fix input and output formats * update input file description * drop sam output, goes against nf-core regs; add input check for cram files * fix typo * Update modules/biobambam/bamsormadup/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * improve ref fasta name * fix if else shorthand * fix syntax error * kind of fix tests * set fixed suffix for metrics file to keep it in line with picard and bammarkduplicates2 * fix command line * update test.yml * add support for multiple input bams * Update modules/biobambam/bamsormadup/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/biobambam/bamsormadup/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update tests/modules/biobambam/bamsormadup/test.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
name: biobambam_bamsormadup
|
|
description: Parallel sorting and duplicate marking
|
|
keywords:
|
|
- markduplicates
|
|
- sort
|
|
- bam
|
|
- cram
|
|
tools:
|
|
- biobambam:
|
|
description: |
|
|
biobambam is a set of tools for early stage alignment file processing.
|
|
homepage: https://gitlab.com/german.tischler/biobambam2
|
|
documentation: https://gitlab.com/german.tischler/biobambam2/-/blob/master/README.md
|
|
doi: 10.1186/1751-0473-9-13
|
|
licence: ["GPL v3"]
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- bams:
|
|
type: file
|
|
description: List containing 1 or more bam files
|
|
- fasta:
|
|
type: file
|
|
description: Reference genome in FASTA format (optional)
|
|
pattern: "*.{fa,fasta}"
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- bam:
|
|
type: file
|
|
description: BAM/CRAM file with duplicate reads marked/removed
|
|
pattern: "*.{bam,cram}"
|
|
- bam_index:
|
|
type: file
|
|
description: BAM index file
|
|
pattern: "*.{bai}"
|
|
- metrics:
|
|
type: file
|
|
description: Duplicate metrics file generated by biobambam
|
|
pattern: "*.{metrics.txt}"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
authors:
|
|
- "@matthdsm"
|