Function consalign::consprob

pub fn consprob<T, 'a>(
    thread_pool: &mut Pool,
    seqs: &Vec<&'a [usize], Global>,
    min_basepair_prob: f32,
    min_match_prob: f32,
    produces_context_profs: bool,
    produces_match_probs: bool,
    align_scores: &AlignScores
) -> (Vec<AlignfoldProbMatsAvg<T>, Global>, HashMap<(usize, usize), MatchProbMats<T>, BuildHasherDefault<AHasher>, Global>)where
    T: HashIndex,