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
// Copyright 2014-2016 Johannes Köster.
// Licensed under the MIT license (http://opensource.org/licenses/MIT)
// This file may not be copied, modified, or distributed
// except according to those terms.

//! Various useful data structures.

pub mod annot_map;
pub mod bit_tree;
pub mod bitenc;
pub mod bwt;
pub mod fmindex;
pub mod interpolation_table;
pub mod interval_tree;
pub mod qgram_index;
pub mod rank_select;
pub mod smallints;
pub mod suffix_array;
pub mod wavelet_matrix;