Skip to main content

oxicuda_seq/align/
mod.rs

1//! Wavefront-based sequence alignment.
2//!
3//! This module hosts the WFA (Wavefront Alignment) family of algorithms. It is
4//! kept separate from the classical dynamic-programming aligners in
5//! [`crate::alignment`]; the two share the [`crate::alignment::gotoh::GotohScoring`]
6//! scoring scheme so their results can be cross-checked.
7
8pub mod wfa;
9
10pub use wfa::{WfaAlignment, WfaOp, wfa_align};