pbzarr 0.1.0

A Zarr v3 convention for per-base resolution genomic data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod error;
pub mod region;
pub mod store;
pub mod track;

pub use error::{PbzError, Result};
pub use region::{Region, parse_region};
pub use store::PbzStore;
pub use track::{Track, TrackConfig, TrackMetadata};

/// PBZ specification version implemented by this crate.
pub const PERBASE_ZARR_VERSION: &str = "0.1";