nf-core_modules/modules/vardictjava/meta.yml

61 lines
1.5 KiB
YAML
Raw Normal View History

2022-04-27 09:12:58 +00:00
name: "vardictjava"
2022-04-27 11:18:46 +00:00
description: The Java port of the VarDict variant caller
2022-04-27 09:12:58 +00:00
keywords:
2022-04-27 11:18:46 +00:00
- variant calling
- VarDict
- AstraZeneca
2022-04-27 09:12:58 +00:00
tools:
- "vardictjava":
description: "Java port of the VarDict variant discovery program"
2022-04-27 11:18:46 +00:00
homepage: "https://github.com/AstraZeneca-NGS/VarDictJava"
documentation: "https://github.com/AstraZeneca-NGS/VarDictJava"
tool_dev_url: "https://github.com/AstraZeneca-NGS/VarDictJava"
doi: "10.1093/nar/gkw227 "
2022-04-27 09:12:58 +00:00
licence: "['MIT']"
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- bam:
type: file
2022-04-27 11:18:46 +00:00
description: BAM/SAM file
pattern: "*.{bam,sam}"
- bai:
type: file
2022-05-03 06:34:12 +00:00
description: Index of the BAM file
pattern: "*.bai"
- bed:
type: file
description: BED with the regions of interest
pattern: "*.bed"
- fasta:
2022-04-27 11:18:46 +00:00
type: file
description: FASTA of the reference genome
pattern: "*.{fa,fasta}"
- fasta_fai:
type: file
description: The index of the FASTA of the reference genome
pattern: "*.fai"
2022-04-27 09:12:58 +00:00
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"
2022-04-27 11:18:46 +00:00
- vcf:
2022-04-27 09:12:58 +00:00
type: file
2022-04-27 11:18:46 +00:00
description: VCF file output
2022-04-28 07:29:27 +00:00
pattern: "*.vcf.gz"
2022-04-27 09:12:58 +00:00
authors:
- "@nvnieuwk"