nf-core_modules/modules/bcftools/roh/meta.yml

59 lines
1.8 KiB
YAML
Raw Normal View History

2022-05-20 14:46:19 +00:00
name: "bcftools_roh"
2022-05-24 14:17:15 +00:00
description: A program for detecting runs of homo/autozygosity. Only bi-allelic sites are considered.
2022-05-20 14:46:19 +00:00
keywords:
2022-05-24 14:17:15 +00:00
- roh
2022-05-20 14:46:19 +00:00
tools:
- "roh":
description: "A program for detecting runs of homo/autozygosity. Only bi-allelic sites are considered."
homepage: https://www.htslib.org/
documentation: http://www.htslib.org/doc/bcftools.html
doi: 10.1093/bioinformatics/btp352
licence: ["MIT"]
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- vcf:
type: file
description: VCF file
pattern: "*.{vcf,.vcf.gz}"
- af_file:
type: file
description: "Read allele frequencies from a tab-delimited file containing the columns: CHROM\tPOS\tREF,ALT\tAF."
2022-06-08 12:48:16 +00:00
- af_file_tbi:
type: file
description: "tbi index of af_file."
2022-05-20 14:46:19 +00:00
- genetic_map:
type: file
description: "Genetic map in the format required also by IMPUTE2."
- regions_file:
type: file
description: "Regions can be specified either on command line or in a VCF, BED, or tab-delimited file (the default)."
- samples_file:
type: file
description: "File of sample names to include or exclude if prefixed with '^'."
- targets_file:
type: file
description: "Targets can be specified either on command line or in a VCF, BED, or tab-delimited file (the default)."
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"
- roh:
type: file
description: Contains site-specific and/or per-region runs of homo/autozygosity calls.
pattern: "*.{roh}"
authors:
- "@ramprasadn"