nf-core_modules/modules/freebayes/meta.yml
Maxime U. Garcia 9767b081b9
Merge freebayes subtools (#1015)
* feat: merge freebayes subtools

* fix: typo

* assess comments from review

* fix: path to module
2021-11-03 11:22:06 +01:00

83 lines
2.2 KiB
YAML

name: freebayes
description: A haplotype-based variant detector
keywords:
- variant caller
- SNP
- genotyping
- somatic variant calling
- germline variant calling
- bacterial variant calling
- bayesian
tools:
- freebayes:
description: Bayesian haplotype-based polymorphism discovery and genotyping
homepage: https://github.com/freebayes/freebayes
documentation: https://github.com/freebayes/freebayes
tool_dev_url: https://github.com/freebayes/freebayes
doi: "arXiv:1207.3907"
licence: ['MIT']
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- input:
type: file
description: BAM/CRAM/SAM file
pattern: "*.{bam,cram,sam}"
- input_index:
type: file
description: BAM/CRAM/SAM index file
pattern: "*.bam.bai"
- fasta:
type: file
description: reference fasta file
pattern: ".{fa,fa.gz,fasta,fasta.gz}"
- fai:
type: file
description: reference fasta file index
pattern: "*.fai"
- targets:
type: file
description: Optional - Limit analysis to targets listed in this BED-format FILE.
pattern: "*.bed"
- samples:
type: file
description: Optional - Limit analysis to samples listed (one per line) in the FILE.
pattern: "*.txt"
- populations:
type: file
description: Optional - Each line of FILE should list a sample and a population which it is part of.
pattern: "*.txt"
- cnv:
type: file
description: |
A copy number map BED file, which has
either a sample-level ploidy:
sample_name copy_number
or a region-specific format:
seq_name start end sample_name copy_number
pattern: "*.bed"
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}"
- vcf:
type: file
description: Compressed VCF file
pattern: "*.vcf.gz"
authors:
- "@maxibor"
- "@FriederikeHanssen"
- "@maxulysse"