This project computes the affine indel gap model global sequence alignment, using the provided sequence strings and score values.
To run a test, run the following command:
Clone the project
git clone https://github.com/carnol29/global-alignmentGo to the project directory
cd global-alignmentRun the program
python3 main.py ["similarity"|"distance"] {blosum_file} {sequences_file}Running a global distance alignment with test files:
python3 main.py distance input_files/blosum62.txt input_files/sequences.txtRunning a global similarity alignment with test files:
python3 main.py similarity input_files/blosum62.txt input_files/sequences.txt