The Needleman-Wunsch algorithm is a dynamic programming algorithm that finds the best
possible alignments between two strings.
It takes three score parameters: match, mismatch, and gap.
Since it is a dynamic programming algorithm, the problem is solved by filling a two
dimensional matrix. It requires O(nm) space and time where n and m are the lengths
of the first and second string, respectively.
All best possible alignments are found by filling the matrix according to the defined
score parameters.
Some optimizations of the algorithm avoid filling values distant from the diagonal, since those values are only needed for the poorest alignments.
La persona que ha asociado una obra a este documento lo dedica al dominio público mediante la cesión mundial de sus derechos bajo la ley de derechos de autor y todos los derechos legales adyacentes propios de dicha, en el ámbito permitido por ley. Puedes copiar, modificar, distribuir y reproducir el trabajo, incluso con objetivos comerciales, sin pedir aprobación del autor.
http://creativecommons.org/publicdomain/zero/1.0/deed.enCC0Creative Commons Zero, Public Domain Dedicationfalsefalse
Leyendas
Añade una explicación corta acerca de lo que representa este archivo