mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
3d720a24fd
* Add allelecount module * Add bed file input * Added bai file * Changed conda version * Update main.nf * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Add allelecount module * Add bed file input * Added bai file * Changed conda version * Update main.nf * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Update pytest_software.yml * Remove newline * Fix pytest_software.yml * Update pytest_software.yml Co-authored-by: Gregor Sturm <mail@gregor-sturm.de>
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: "*.{version.txt}"
|
|
- alleleCount:
|
|
type: file
|
|
description: Allele count file
|
|
pattern: "*.{alleleCount}"
|
|
|
|
authors:
|
|
- "@fullama"
|