I am learning bioinformatics, this is the code I am writing.
- Python 3
pip install -r requirements.txt
black *.py
# Basic
python needleman_wunsch.py "GTCGACGCA" "GGATACA"
# Custom weights
python needleman_wunsch.py "GTCGACGCA" "GGATACA" --gap -1 --mismatch 0 --match 3