Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 668 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 668 Bytes

Bio.VCF

codecov Build status

Made available on NuGet: https://www.nuget.org/packages/Bio.VCF.ajc/.

A CSharp Parser for VCF Files. Can iterate over VCF files and provides typed access to all of the relavent information as well as data validation.

Simple Usage Example:

string fname = @"MyFile.vcf";
VCFParser vcp = new VCFParser(fname);
var myData=vcp.Where(x=>x.NoCallCount <20 && x.Biallelic).ToList();