mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
94619a3faf
* add annotate * add models * add compound * add score * update annotate recipe * update meta and main * main updates * add test for annotate * update all tests * refactor * update tests * fix conda issue * review suggestions
40 lines
1 KiB
YAML
40 lines
1 KiB
YAML
name: "genmod_annotate"
|
|
description: for annotating regions, frequencies, cadd scores
|
|
keywords:
|
|
- annotate
|
|
- genmod
|
|
tools:
|
|
- "genmod":
|
|
description: "Annotate genetic inheritance models in variant files"
|
|
homepage: "https://github.com/Clinical-Genomics/genmod"
|
|
documentation: "https://github.com/Clinical-Genomics/genmod"
|
|
tool_dev_url: "https://github.com/moonso"
|
|
doi: ""
|
|
licence: "['MIT']"
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- input_vcf:
|
|
type: file
|
|
description: VCF file
|
|
pattern: "*.{vcf}"
|
|
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"
|
|
- vcf:
|
|
type: vcf
|
|
description: Annotated VCF file
|
|
pattern: "*.{vcf}"
|
|
|
|
authors:
|
|
- "@ramprasadn"
|