Thanks to visit codestin.com
Credit goes to docs.rs

Crate onecode

Crate onecode 

Source
Expand description

Rust bindings for ONEcode - a data representation format for genomic data

ONEcode is a simple, efficient data representation format that provides both human-readable ASCII and compressed binary file versions with strongly typed data.

§Example

use onecode::OneFile;

// Open a ONE file for reading
let file = OneFile::open_read("data.1seq", None, None, 1).unwrap();

Re-exports§

pub use error::OneError;
pub use error::Result;
pub use file::OneFile;
pub use schema::OneSchema;
pub use types::OneType;
pub use types::OneProvenance;
pub use types::OneReference;

Modules§

error
Error handling for ONEcode operations
ffi
Raw FFI bindings to the ONEcode C library
file
OneFile wrapper for reading and writing ONE files
schema
Schema management for ONE files
types
Type definitions for ONEcode