mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
906577873b
* New functions.nf * Convert code to create versions.yml * Update meta.yml * update output channel * Fix more meta.yml * Manually update remaining modules * remove superflous echo * Fix misformatted meta.yml files * Fix yaml, was list instead of dict * fix version for bcftools Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
name: allelecounter
|
|
|
|
description: Generates a count of coverage of alleles
|
|
keywords:
|
|
- allele
|
|
- count
|
|
tools:
|
|
- allelecounter:
|
|
description: Takes a file of locations and a [cr|b]am file and generates a count of coverage of each allele at that location (given any filter settings)
|
|
homepage: https://github.com/cancerit/alleleCount
|
|
documentation: https://github.com/cancerit/alleleCount
|
|
tool_dev_url: https://github.com/cancerit/alleleCount
|
|
doi: ""
|
|
licence: A-GPL 3.0
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- bam:
|
|
type: file
|
|
description: BAM/CRAM/SAM file
|
|
pattern: "*.{bam,cram,sam}"
|
|
- bai:
|
|
type: file
|
|
description: BAM/CRAM/SAM index file
|
|
pattern: "*.{bai,crai,sai}"
|
|
- loci:
|
|
type: file
|
|
description: loci file <CHR><tab><POS1>
|
|
pattern: "*.{tsv}"
|
|
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- version:
|
|
type: file
|
|
description: File containing software version
|
|
pattern: "versions.yml"
|
|
- alleleCount:
|
|
type: file
|
|
description: Allele count file
|
|
pattern: "*.{alleleCount}"
|
|
|
|
authors:
|
|
- "@fullama"
|