bio-types 0.5.1

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
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate quick_error;
#[macro_use]
extern crate lazy_static;

extern crate regex;

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