noodles-tabix 0.7.1

Tabix (TBI) format reader and writer
docs.rs failed to build noodles-tabix-0.7.1
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-tabix-0.39.0

noodles-tabix handles the reading and writing of the tabix format.

A tabix (TBI) is an index file typically used to allow random access of an accompanied file that is

  1. bgzipped,
  2. tab-delimited,
  3. grouped by reference sequence name, and
  4. coordinate sorted by start position.

It can be used to find relevant records for a given genomic region.

Examples

Read a tabix file

# use std::io;
use noodles_tabix as tabix;
let index = tabix::read("sample.vcf.gz.tbi")?;
# Ok::<(), io::Error>(())