#global #path #edlib

rsedlib

rust binding of edlib

4 releases

0.1.1 Mar 25, 2025
0.1.0 Mar 25, 2025
0.0.3 Mar 24, 2025
0.0.2 Mar 23, 2025
0.0.1 Mar 23, 2025

#225 in Biology

Download history 191/week @ 2025-03-18 206/week @ 2025-03-25

397 downloads per month

MIT license

4MB
3K SLoC

C++ 2K SLoC // 0.2% comments Rust 486 SLoC // 0.0% comments Shell 283 SLoC // 0.1% comments Cython 174 SLoC // 0.3% comments Python 132 SLoC // 0.1% comments C 7 SLoC

let query = b"elephant";
let target = b"telephone";

let mut param = EdlibAlignParam::default();
// param.set_mode(param::AlignMode::Global);
param.set_task(param::AlignTask::Path);
param.set_cigar_fmt(param::CigarFmt::Extended);
let aln_res = edlib_align(query, target, &param);
println!("{:?}", aln_res);

/*
Ok(EdlibAlignResult { edit_distance: 3, alphabet_length: 8, locations: [(0, 8)], cigar: Some("1D5=1X1=1X") })
*/

Dependencies