Skip to main content

oxicuda_seq/folding/
mod.rs

1//! RNA secondary-structure folding algorithms.
2//!
3//! Currently this module provides the Nussinov (1978) maximum-base-pairing
4//! dynamic program, which finds a pseudoknot-free secondary structure that
5//! maximises the number of complementary base pairs.
6
7pub mod nussinov;
8
9pub use nussinov::{NussinovConfig, NussinovResult, can_pair, nussinov_fold};