bio 0.1.2

A rusty bioinformatics library. This library provides implementations of many algorithms and data structures that are useful for bioinformatics.
docs.rs failed to build bio-0.1.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: bio-1.6.0

Rust-Bio, a rusty bioinformatics library.

This library provides implementations of many algorithms and data structures that are useful for bioinformatics. All provided implementations are rigorously tested via continuous integration (https://travis-ci.org/johanneskoester/rust-bio).

Currently, rust-bio provides

  • pattern matching,
  • pairwise alignment,
  • suffix arrays,
  • BWT and FM-Index,
  • rank/select data structures.

Find out more at https://github.com/johanneskoester/rust-bio.

Usage

To use rust-bio in your Rust project, add the following to your Cargo.toml

[dependencies]
bio = "*"

and import the crate from your source code:

extern crate bio;
// use e.g. a pattern matching algorithm
use bio::pattern_matching::bndm::BNDM;

let pattern = b"GAAAA";
let text = b"ACGGCTAGAAAAGGCTAGAAAA";
let bndm = BNDM::new(pattern);
let matches = bndm.find_all(text);

For more information, please read the API documentation: https://johanneskoester.github.io/rust-bio/doc/bio/index.html

Authors

The next name in this list could be you! If you are interested in joining the effort to build a general purpose Rust bioinformatics library, just send me an email, or issue a pull request with your first contribution.

License

Licensed under the MIT license http://opensource.org/licenses/MIT. This project may not be copied, modified, or distributed except according to those terms.