[][src]Function seqalign::par_compare

pub fn par_compare(
    v: Vec<(&str, &str)>,
    map: HashMap<&str, &str>,
    num_threads: &str
) -> PyResult<Vec<(String, String, u16)>>

Gets a Vector of tuples that contains 2 keys of the HashMap parameter, then compare the samples contained on the HashMap 2 by 2 through multi-processing. To do that, the parallel iterator and map functions of the Rayon Crate are used.