A simple rust CLI program which executes the Dynamic Programming Needleman–Wunsch algorithm for aligning 2 DNA sequences supplied through argv.
- Example usage
cargo r CACACG CACTGCAT
- Example output
Finished dev [unoptimized + debuginfo] target(s) in 0.00s
Running `target/debug/rs-sequence-alignment CACACG CACTGCAT`
CAC-AC-G
CACTGCAT