mafft-core 0.2.0

Core MAFFT alignment engine: progressive alignment and iterative refinement
Documentation
//! Core MAFFT alignment engine.
//!
//! Orchestrates the full alignment pipeline:
//! 1. Progressive alignment following a guide tree.
//! 2. Iterative refinement with score-based acceptance.
//! 3. Adding sequences to existing alignments.
//!
//! Ports the C `TreeDependentIteration()` from `tditeration.c`,
//! progressive alignment from `disttbfast.c`/`tbfast.c`, and
//! `addonetip()` from `addfunctions.c`.

pub mod adjust_direction;
pub mod progressive;
mod varidist;
mod refinement;
mod engine;
mod add;
pub mod external;

pub use progressive::{progressive_align, progressive_align_partial, progressive_align_unweighted, progressive_align_with_weights_override, MultipleAlignment, StepTrace};
pub use refinement::{iterative_refine, RefinementParams};
pub use engine::{MafftEngine, AlignmentMode, pair_penalty_scales, dndpre_offset_shift};
pub use add::{add_sequences, add_sequences_keeplength, add_sequences_keeplength_with_map};