#bioinformatics #ffi #alignment #parasail #rust

parasail-rs

Rust bindings and wrapper for parasail, a SIMD C library for pairwise sequence alignment

14 releases (6 breaking)

new 0.7.3 Apr 22, 2024
0.7.2 Apr 18, 2024
0.6.0 Mar 18, 2024
0.5.1 Mar 15, 2024
0.1.0 Feb 21, 2024

#56 in Biology

Download history 119/week @ 2024-02-18 566/week @ 2024-02-25 287/week @ 2024-03-03 343/week @ 2024-03-10 262/week @ 2024-03-17 2/week @ 2024-03-24 172/week @ 2024-03-31 21/week @ 2024-04-07 349/week @ 2024-04-14

560 downloads per month

BSD-3-Clause

53KB
985 lines

parasail-rs

GitHub Actions Workflow Status docs.rs Crates.io Version

This crate provides safe Rust bindings and a wrapper to parasail, a SIMD pairwise sequence alignment C library. Note that this crate is still under development and is unstable.

Usage

Installation

Run the following Cargo command in your project directory:

cargo add parasail-rs

Note that parasail-rs depends on libparasail-sys which will either use an already installed system parasail library or build from source. For more information, please see libparasail-sys.

Examples

Basic usage:

For one-off alignments:

use parasail_rs::{Aligner};

let query = b"ACGT";
let reference = b"ACGT";
let aligner = Aligner::new().build();

aligner.align(Some(query), reference);

Using query profile:

use parasail_rs::{Matrix, Aligner, Profile};

let query = b"ACGT";
let ref_1 = b"ACGTAACGTACA";
let ref_2 = b"TGGCAAGGTAGA";

let use_stats = true;
let query_profile = Profile::new(query, use_stats, Matrix::default());
let aligner = Aligner::new()
 .profile(query_profile, 5, 2, "striped")
 .semi_global()
 .build();

let result_1 = aligner.align(None, ref_1);
let result_2 = aligner.align(None, ref_2);

Contributing

Contributions are more than welcome. Please open an issue or send an email to nsb5 [at] rice.edu for any feedback or questions.

Citations

If needed, please cite the following paper:

Daily, Jeff. (2016). Parasail: SIMD C library for global, semi-global, and local pairwise sequence alignments. BMC Bioinformatics, 17(1), 1-11. doi:10.1186/s12859-016-0930-z

License

parasail-rs and libparasail-sys are licensed under the BSD-3-Clause license. The original parasail C library is licensed under a similar Battelle style BSD license.

Nicolas S. Buitrago <nsb5 [at] rice.edu>

Dependencies

~25MB
~704K SLoC