onelib 0.2.0

Rust implementation of the ONEcode file format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Rust implementation of the ONEcode file format.
//!
//! ONEcode is a general-purpose scientific data format designed by Richard
//! Durbin and Gene Myers, originally for the Vertebrate Genomes Project. It
//! supports dual ASCII/binary representation with per-field compression,
//! built-in indexing, and self-describing schemas.

pub mod codec;
pub mod error;
pub mod reader;
pub mod schema;
pub mod types;
pub mod writer;