bio 0.10.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
8
9
10
11
12
13
14
#![feature(test)]

extern crate test;
extern crate bit_vec;
extern crate bio;

use test::Bencher;

use bio::data_structures::suffix_array::*;

#[bench]
fn bench_suffix_array(b: &mut Bencher) {
    b.iter(|| suffix_array(b"GCCTTAACATTATTACGCCTA$"));
}