https://github.com/cpg314/sequence-alignment
A toy implementation of Needleman-Wunsch to demo Rust, not meant to be used for any other purpose.
https://github.com/cpg314/sequence-alignment
Last synced: about 1 year ago
JSON representation
A toy implementation of Needleman-Wunsch to demo Rust, not meant to be used for any other purpose.
- Host: GitHub
- URL: https://github.com/cpg314/sequence-alignment
- Owner: cpg314
- Created: 2025-01-15T23:10:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-06T14:34:56.000Z (over 1 year ago)
- Last Synced: 2025-03-06T15:34:07.953Z (over 1 year ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A toy implementation of Needleman-Wunsch to demo Rust, not meant to be used for any other purpose.
```
$ alignment -h
Usage: alignment [OPTIONS]
Commands:
align Align the first two sequences in a FASTA file
serve Launch alignment HTTP service
help Print this message or the help of the given subcommand(s)
Options:
--mismatch-penalty [default: -2]
--gap-penalty [default: -1]
-h, --help Print help
```