pub trait Aligner: Debug { // Required method fn align(&mut self, a: Seq<'_>, b: Seq<'_>) -> (Cost, Option<Cigar>); }
Generic global pairwise alignment interface.
An alignment of sequences a and b. The returned cost is the non-negative cost of the alignment. Costmodel and traceback parameters must be specified on construction of the aligner.
a
b