genimtools/
lib.rs

1//! # Genimtools: *<small>Performance-critical tools to manipulate, analyze, and process genomic interval data. </small>*
2//!
3//! `genimtools` is a rust crate that provides a set of tools for working with genomic interval data. Its primary goal is to provide
4//! processors for our python package, [`geniml`](https:github.com/databio/geniml), a library for machine learning on genomic intervals.
5//! However, it can be used as a standalone library for working with genomic intervals as well.
6//!
7pub mod ailist;
8pub mod common;
9pub mod io;
10pub mod tokenizers;
11pub mod tools;
12pub mod uniwig;
13pub mod vocab;