needleman-wunsch

Differences

This shows you the differences between two versions of the page.


needleman-wunsch [2018/10/03 17:42] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== Needleman-Wunsch ======
 +Needleman-Wunsch is a nonlinear global optimization method for DNA sequence alignments. The potential pairs of sequences are organized in a 2D matrix. In the first step, the algorithm fills the matrix from top left to bottom right, step-by-step. The optimum alignment is the pathway through the array with maximum score, where the score is the value of the maximum weighted path ending at that cell. Thus, the value of each data element depends on the values of its northwest-, north- and west-adjacent elements. In the second step, the maximum path is traced backward to deduce the optimal alignment. A step-by-step illustration of this algorithm can be found in this [[http://www.ludwig.edu.au/course/lectures2005/Likic.pdf|link]].
  
 +Retrieved from "https://www.cs.virginia.edu/~skadron/wiki/rodinia/index.php?title=Needleman-Wunsch&oldid=186"