2021-11-03 10:22:06 +00:00
|
|
|
name: freebayes
|
2021-10-20 13:19:31 +00:00
|
|
|
description: A haplotype-based variant detector
|
|
|
|
keywords:
|
|
|
|
- variant caller
|
|
|
|
- SNP
|
|
|
|
- genotyping
|
2021-11-03 10:22:06 +00:00
|
|
|
- somatic variant calling
|
|
|
|
- germline variant calling
|
|
|
|
- bacterial variant calling
|
2021-10-20 13:19:31 +00:00
|
|
|
- bayesian
|
2021-11-03 10:22:06 +00:00
|
|
|
|
2021-10-20 13:19:31 +00:00
|
|
|
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
|
2021-10-29 15:05:06 +00:00
|
|
|
doi: "arXiv:1207.3907"
|
2022-02-15 11:15:27 +00:00
|
|
|
licence: ["MIT"]
|
2021-10-20 13:19:31 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
2021-10-29 15:05:06 +00:00
|
|
|
- input:
|
2021-10-20 13:19:31 +00:00
|
|
|
type: file
|
|
|
|
description: BAM/CRAM/SAM file
|
|
|
|
pattern: "*.{bam,cram,sam}"
|
2021-10-29 15:05:06 +00:00
|
|
|
- input_index:
|
2021-10-20 13:19:31 +00:00
|
|
|
type: file
|
|
|
|
description: BAM/CRAM/SAM index file
|
2022-02-10 09:34:22 +00:00
|
|
|
pattern: "*.{bai,crai}"
|
|
|
|
- target_bed:
|
|
|
|
type: file
|
|
|
|
description: Optional - Limit analysis to targets listed in this BED-format FILE.
|
|
|
|
pattern: "*.bed"
|
2021-10-20 13:19:31 +00:00
|
|
|
- fasta:
|
|
|
|
type: file
|
|
|
|
description: reference fasta file
|
|
|
|
pattern: ".{fa,fa.gz,fasta,fasta.gz}"
|
2021-11-26 07:58:40 +00:00
|
|
|
- fasta_fai:
|
2021-10-20 13:19:31 +00:00
|
|
|
type: file
|
|
|
|
description: reference fasta file index
|
2021-11-26 07:58:40 +00:00
|
|
|
pattern: "*.{fa,fasta}.fai"
|
2021-10-20 13:19:31 +00:00
|
|
|
- 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: |
|
2022-02-15 11:15:27 +00:00
|
|
|
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
|
2021-10-20 13:19:31 +00:00
|
|
|
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"
|
2021-11-03 10:22:06 +00:00
|
|
|
|
2021-10-20 13:19:31 +00:00
|
|
|
authors:
|
|
|
|
- "@maxibor"
|
2021-10-29 15:05:06 +00:00
|
|
|
- "@FriederikeHanssen"
|
2021-11-03 10:22:06 +00:00
|
|
|
- "@maxulysse"
|