bio 3.0.0

A bioinformatics library for Rust. This library provides implementations of many algorithms and data structures that are useful for bioinformatics, but also in other fields.
Documentation
1
2
3
4
5
6
7
mod array_backed_interval_tree;
mod avl_interval_tree;

pub use array_backed_interval_tree::ArrayBackedIntervalTree;
pub use avl_interval_tree::{
    Entry, EntryMut, IntervalTree, IntervalTreeIterator, IntervalTreeIteratorMut,
};