Longest Common DNA Subsequence Model DocumentsThis material has 2 associated documents. Select a document title to view a document's information. Main DocumentLongest Common DNA Subsequence Model
written by
Tyler Murray The Longest Common DNA Subsequence Model implements a widely used method for DNA comparison by searching two DNA sequences for matching subsequences. The more two DNA sequences have in common, the more likely they are to have similar functionality. The simulation draws a grid whose components are described by nucleotides in each DNA sequence. The algorithm moves through the grid and weighs each component based on the agreement between the two nucleotides. Components with matching nucleotides are weighed heavier than those whose nucleotides don't match. Then the algorithm moves through the grid again and finds the heaviest weighted path. This path results in the longest common sub-sequence.
Published November 17, 2014
This file has previous versions. Source Code DocumentsLongest Common DNA Subsequence Source CodeThe source code zip archive contains an XML representation of the Longest Common DNA Subsequence Model. Unzip this archive in your EjsS workspace to compile and run this model using EjsS.
Last Modified November 18, 2014
|