bio-types 0.6.0

A collection of common biomedical types for use in rust-bio and rust-htslib.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate quick_error;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate derive_new;

extern crate regex;

pub mod alignment;
pub mod annot;
pub mod genome;
pub mod sequence;
pub mod strand;
pub mod variant;