VCFTools.jl icon indicating copy to clipboard operation
VCFTools.jl copied to clipboard

Julia utilities for handling VCF files

Results 7 VCFTools.jl issues
Sort by recently updated
recently updated
newest added

As suggested by @Hua-Zhou, the `nth` function in [IterTools](https://juliacollections.github.io/IterTools.jl/latest/#nth(xs,-n)-1) can indeed get the nth item of a VCF reader. I will implement a parallel read routine in the next few...

Missing is only allowed for unphased genotypes

It would be a nice feature to allow for `gtstats()` to report MAF/HWE p-values for the dosage data in addition to the existing method for genotype data. Some GWAS pipelines...

enhancement

Currently `convert_gt`, `convert_ht`, and `convert_ds` represent missing data as `missing`. This causes the output genotype matrix to be of type `Array{Union{Missing, T}, 2}`. If we use `NaN` to represent missing...

This issue documents the implementation roadmap for iterative solvers. - [x] Convert GT data to Plink format (SnpData) - [x] Subset VCF records according chromosome and position range - [x]...