caassien/moonbio/src/align does not have a README file
pub struct AlignmentResult {
score : Int
alignment_a : String
alignment_b : String
}fn needleman_wunsch(s1 : String, s2 : String, match_score : Int, mismatch_score : Int, gap_penalty : Int) -> AlignmentResultfn smith_waterman(s1 : String, s2 : String, match_score : Int, mismatch_score : Int, gap_penalty : Int) -> AlignmentResult