5 releases

0.2.3 Aug 22, 2022
0.2.2 May 11, 2020
0.2.1 May 19, 2018
0.1.1 Mar 18, 2018
0.1.0 Mar 9, 2018

#719 in Algorithms

Download history 215/week @ 2023-12-15 141/week @ 2023-12-22 165/week @ 2023-12-29 100/week @ 2024-01-05 177/week @ 2024-01-12 244/week @ 2024-01-19 119/week @ 2024-01-26 117/week @ 2024-02-02 153/week @ 2024-02-09 117/week @ 2024-02-16 249/week @ 2024-02-23 136/week @ 2024-03-01 160/week @ 2024-03-08 268/week @ 2024-03-15 258/week @ 2024-03-22 175/week @ 2024-03-29

895 downloads per month
Used in 11 crates (3 directly)

MIT/Apache

36KB
857 lines

crates.io docs.rs Travis CI

seqalign

Introduction

This crate implements commonly-used sequence alignment methods based on edit operations. There are multiple crates available to compute edit distances. However, to my knowledge there was no crate that supports all of the following seqalign features:

  • Works on slices of any type.
  • Can return both the edit distance and the edit script/alignment.
  • Can be extended with new measures.

Example

use seqalign::Align;
use seqalign::measures::LevenshteinDamerau;

let incorrect = &['t', 'p', 'y', 'o'];
let correct = &['t', 'y', 'p', 'o', 's'];

let measure = LevenshteinDamerau::new(1, 1, 1, 1);
let alignment = measure.align(incorrect, correct);

// Get the edit distance
assert_eq!(2, alignment.distance());

// Get the edit script.
use seqalign::measures::LevenshteinDamerauOp;
use seqalign::op::IndexedOperation;

assert_eq!(vec![
  	IndexedOperation::new(LevenshteinDamerauOp::Match, 0, 0),
  	IndexedOperation::new(LevenshteinDamerauOp::Transpose(1), 1, 1),
  	IndexedOperation::new(LevenshteinDamerauOp::Match, 3, 3),
  	IndexedOperation::new(LevenshteinDamerauOp::Insert(1), 4, 4)
  ], alignment.edit_script());

No runtime deps