An open API service indexing awesome lists of open source software.

https://github.com/harshoza36/dna_sequence_alignment

CSCI-570 Analysis Of Algorithms project at USC
https://github.com/harshoza36/dna_sequence_alignment

algorithms divide-and-conquer dynamic-programming sequence-alignment

Last synced: 8 months ago
JSON representation

CSCI-570 Analysis Of Algorithms project at USC

Awesome Lists containing this project

README

          

# DNA_Sequence_Alignment
This project was part of CSCI-570 - Analysis of Algorithms at The University of Southern California.

In this project we implement two sequence alignment algorithms.
- ```basic3.py``` is pure dynamic programming approach.
- ```efficient3.py``` is memory efficient approach which combines Divide and conquer and dynamic programming.