2021-08-16 15:40:03 +00:00
|
|
|
name: bcftools_norm
|
|
|
|
description: Normalize VCF file
|
|
|
|
keywords:
|
|
|
|
- normalize
|
|
|
|
- norm
|
|
|
|
- variant calling
|
|
|
|
- VCF
|
|
|
|
tools:
|
2022-02-15 11:15:27 +00:00
|
|
|
- norm:
|
|
|
|
description: |
|
|
|
|
Normalize VCF files.
|
|
|
|
homepage: http://samtools.github.io/bcftools/bcftools.html
|
|
|
|
documentation: http://www.htslib.org/doc/bcftools.html
|
|
|
|
doi: 10.1093/bioinformatics/btp352
|
|
|
|
licence: ["MIT"]
|
2021-08-16 15:40:03 +00:00
|
|
|
input:
|
2022-02-15 11:15:27 +00:00
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- vcf:
|
|
|
|
type: file
|
|
|
|
description: |
|
|
|
|
The vcf file to be normalized
|
|
|
|
e.g. 'file1.vcf'
|
2022-06-28 14:18:12 +00:00
|
|
|
pattern: "*.{vcf,vcf.gz}"
|
|
|
|
- tbi:
|
|
|
|
type: file
|
|
|
|
description: |
|
|
|
|
An optional index of the VCF file (for when the VCF is compressed)
|
|
|
|
pattern: "*.vcf.gz.tbi"
|
2022-02-15 11:15:27 +00:00
|
|
|
- fasta:
|
|
|
|
type: file
|
|
|
|
description: FASTA reference file
|
|
|
|
pattern: "*.{fasta,fa}"
|
2021-08-16 15:40:03 +00:00
|
|
|
output:
|
2022-02-15 11:15:27 +00:00
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- vcf:
|
|
|
|
type: file
|
|
|
|
description: VCF normalized output file
|
2022-06-28 14:18:12 +00:00
|
|
|
pattern: "*.vcf.gz"
|
2022-02-15 11:15:27 +00:00
|
|
|
- versions:
|
|
|
|
type: file
|
|
|
|
description: File containing software versions
|
|
|
|
pattern: "versions.yml"
|
2021-08-16 15:40:03 +00:00
|
|
|
authors:
|
2022-02-15 11:15:27 +00:00
|
|
|
- "@abhi18av"
|