computational-biology

Layer 3 — Biology6 concepts in this subtree

Computational biology — NSF BIO / DBI biological-informatics grain; computational methods applied to biological data (sequences, structures, networks, cellular state). Foundations: (1) Dynamic-programming sequence alignment:…

Needleman-Wunsch DP: dp[i][j] = max(dp[i−1,j−1]+s, dp[i−1,j]+g, dp[i,j−1]+g)
Levenshtein edit distance: min{ins, del, sub} ops; metric on Σ*
Hamming distance: d_H(x,y) = #{i: x_i ≠ y_i}; upper-bounds Levenshtein
NW canonical anchors: NW(AG,AG)=2, NW(AG,AC)=0, NW(ATGC,ATGC)=4
Levenshtein metric on canonical anchors: d(kitten,sitting) = 3, d(x,x)=0, symmetric
Hamming bound: d_L(AACT,AGCT) = d_H(AACT,AGCT) = 1; d_L ≤ d_H for |x|=|y|
Explore the computational-biology subtree on the interactive graph →