mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
26 lines
650 B
YAML
26 lines
650 B
YAML
|
name: htslib tabix
|
||
|
description: create tabix index from a bgzip vcf file
|
||
|
keywords:
|
||
|
- index
|
||
|
- tabix
|
||
|
tools:
|
||
|
- bwa:
|
||
|
description: |
|
||
|
Generic indexer for TAB-delimited genome position files.
|
||
|
homepage: https://www.htslib.org/
|
||
|
documentation: https://www.htslib.org/doc/tabix.1.html
|
||
|
doi: 10.1093/bioinformatics/btq671
|
||
|
input:
|
||
|
-
|
||
|
- input:
|
||
|
type: file
|
||
|
description: Input vcf.gz file
|
||
|
pattern: *.{vcf.gz}
|
||
|
output:
|
||
|
-
|
||
|
- index:
|
||
|
type: file
|
||
|
description: tabix index file
|
||
|
pattern: *.{vcf.gz.tbi}
|
||
|
authors:
|
||
|
- @maxulysse
|