Skip to content

Some basic stuff about dynamic programming. I've coded a python script with a class that gets two arrays and creates the alignment of them.

License

Notifications You must be signed in to change notification settings

ihavenonickname/Dynamic-programming-for-sequence-alignment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Dynamic-programming-for-sequence-alignment

A toy code for sequences alignment, either local or global. If you have no idea, please read the following: https://en.wikipedia.org/wiki/Sequence_alignment#Dynamic_programming

from seqalign import SequencesAligner

sa = SequencesAligner(seq1="GITHUB", seq2="GITTYHUB")
sa.initmatrix()
sa.mountmatrix()
print "\n".join(sa.alignment())

About

Some basic stuff about dynamic programming. I've coded a python script with a class that gets two arrays and creates the alignment of them.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages