bio 1.3.1

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
8
9
10
11
12
13
14
// 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.

//! Mathematical and statistical tools.

pub mod bayesian;
pub mod combinatorics;
pub mod hmm;
pub mod pairhmm;
pub mod probs;

pub use crate::stats::probs::{LogProb, PHREDProb, Prob};