noodles-vcf 0.83.0

Variant Call Format (VCF) reader and writer
docs.rs failed to build noodles-vcf-0.83.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: noodles-vcf-0.82.0

noodles-vcf handles the reading and writing of the VCF format.

Examples

Read all records from a file

use noodles_vcf as vcf;

let mut reader = vcf::io::reader::Builder::default().build_from_path("sample.vcf")?;
let header = reader.read_header()?;

for result in reader.records() {
    let record = result?;
    // ...
}
# Ok::<_, std::io::Error>(())