needleman 0.2.0

needleman is a needleman-wunsch algorithm implement
Documentation




mod needleman;

fn preprocess_gene(s:String) -> String{
    let mut res = String::new();
    for c in s.chars() {
        if c.is_ascii_alphabetic() {
            res.push(c);
        }
    }
    res
}


fn main() {

}