pub fn align(
sim: &[f64],
n_source: usize,
n_target: usize,
threshold: f64,
) -> Option<Alignment>Expand description
Align two ontologies from their n_source × n_target similarity matrix. Only
correspondences with degree ≥ threshold are proposed. Returns the alignment as
review-required closeMatch proposals.