CS481: Bioinformatics Algorithms
Can Alkan EA224 calkan@cs.bilkent.edu.tr
http://www.cs.bilkent.edu.tr/~calkan/teaching/cs481/
CS481: Bioinformatics Algorithms Can Alkan EA224 - - PowerPoint PPT Presentation
CS481: Bioinformatics Algorithms Can Alkan EA224 calkan@cs.bilkent.edu.tr http://www.cs.bilkent.edu.tr/~calkan/teaching/cs481/ DNA MAPPING Molecular Scissors Molecular Cell Biology, 4th edition Recognition Sites of Restriction Enzymes
http://www.cs.bilkent.edu.tr/~calkan/teaching/cs481/
Molecular Cell Biology, 4th edition
Molecular Cell Biology, 4th edition
Recombinant DNA technology Cloning cDNA/genomic library construction DNA mapping
DNA sequence
known then construction
trivial exercise
molecular biology DNA sequences were often unknown
the problem of constructing restriction maps without knowing DNA sequences
DNA fragments are injected into a gel
DNA are negatively charged near neutral pH
The ribose phosphate backbone of each
DNA molecules move towards the positive
DNA fragments of different lengths are
Smaller molecules move through the gel
The gel matrix restricts random diffusion so
Direction of DNA movement Smaller fragments travel farther
Molecular Cell Biology, 4th edition
We assume that multiplicity
can be detected, i.e., the number of restriction fragments of the same length can be determined (e.g., by
as much fluorescence intensity for a double fragment than for a single fragment)
Multiset: {3, 5, 5, 8, 9, 14, 14, 17, 19, 22}
X 2 4 7 10 2 4 7 10 2 2 5 8 4 3 6 7 3 10 Representation of ∆ X = {2, 2, 3, 3, 4, 5, 6, 7, 8, 10} as a two dimensional table, with elements of X = {0, 2, 4, 7, 10} along both the top and left side. The elements at (i, j) in the table is xj – xi for 1 ≤ i < j ≤ n.
Input: The multiset of pairwise distances L,
Output: A set X, of n integers, such that
It is not always possible to uniquely reconstruct a set X based
For example, the set X = {0, 2, 5} and (X + 10) = {10, 12, 15} both produce ∆ X={2, 3, 5} as their partial digest set. The sets {0,1,2,5,7,9,12} and {0,1,5,7,8,10,12} present a less trivial example of non-uniqueness. They both digest into: {1, 1, 2, 2, 2, 3, 3, 4, 4, 5, 5, 5, 6, 7, 7, 7, 8, 9, 10, 11, 12}
1 2 5 7 9 12 1 2 5 7 9 12 1 1 4 6 8 11 2 3 5 7 10 5 2 4 7 7 2 5 9 3 12 1 5 7 8 10 12 1 5 7 8 10 12 1 4 6 7 9 11 5 2 3 5 7 7 1 3 5 8 2 4 10 2 12
Also known as exhaustive search
Efficient in rare cases; usually impractical
1. BruteForcePDP(L, n): 2. M <- maximum element in L 3. for every set of n – 2 integers 0 < x2 < … xn-1 < M 4. X <- {0,x2,…,xn-1,M} 5. Form ∆ X from X 6. if ∆ X = L 7. return X 8.
1. AnotherBruteForcePDP(L, n) 2. M <- maximum element in L 3. for every set of n – 2 integers 0 < x2 < … xn-1 < M 4. X <- { 0,x2,…,xn-1,M } 5. Form ∆ X from X 6. if ∆ X = L 7. return X 8.
1. AnotherBruteForcePDP(L, n) 2. M <- maximum element in L 3. for every set of n – 2 integers 0 < x2 < … xn-1 < M from L 4. X <- { 0,x2,…,xn-1,M } 5. Form ∆ X from X 6. if ∆ X = L 7. return X 8.
It’s more efficient, but still slow If L = {2, 998, 1000} (n = 3, M = 1000),
Fewer sets are examined, but runtime is still
By Steven Skiena (Stony Brook Univ.) We first define ∆(y, X)
1. PLACE(L, X) 2. if L is empty 3.
4. return 5. y <- maximum element in L 6. Delete(y,L) 7. if ∆(y, X ) Í L 8. Add y to X and remove lengths ∆(y, X) from L 9. PLACE(L,X )
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0 }
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0 } Remove 10 from L and insert it into X. We know this must be the length of the DNA sequence because it is the largest fragment.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 10 }
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 10 } Take 8 from L and make y = 2 or 8. But since the two cases are symmetric, we can assume y = 2.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 10 } We find that the distances from y=2 to other elements in X are ∆(y, X) = {8, 2}, so we remove {8, 2} from L and add 2 to X.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 10 }
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 10 } Take 7 from L and make y = 7 or y = 10 – 7 = 3. We will explore y = 7 first, so ∆(y, X ) = {7, 5, 3}.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 10 } For y = 7 first, ∆(y, X ) = {7, 5, 3}. Therefore we remove {7, 5 ,3} from L and add 7 to X.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 7, 10 }
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 7, 10 } Next: take 6 from L and make y = 6 or y = 10 – 6 = 4.
∆(y, X) = {6, 4, 1 ,4}, which is NOT a subset of L so we will NOT explore this branch
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 7, 10 } This time make y = 4. ∆(y, X) = {4, 2, 3 ,6}, which is a subset of L so we will explore this branch. We remove {4, 2, 3 ,6} from L and add 4 to X.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 4, 7, 10 }
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 4, 7, 10 } L is now empty, so we have a solution, which is X.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 7, 10 } To find other solutions, we backtrack.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 10 } More backtrack.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 2, 10 } This time we will explore y = 3. ∆(y, X) = {3, 1, 7}, which is not a subset of L, so we won’t explore this branch.
L = { 2, 2, 3, 3, 4, 5, 6, 7, 8, 10 } X = { 0, 10 } We backtracked back to the root. Therefore we have found all the solutions.
Still exponential in worst case, but is very fast
Informally, let T(n) be time PartialDigest takes
No branching case: T(n) < T(n-1) + O(n)
Quadratic
Branching case: T(n) < 2T(n-1) + O(n)
Exponential
Double Digest is yet another experimentally method to construct restriction maps
Use two restriction enzymes; three full digests:
One with only first enzyme One with only second enzyme One with both enzymes
Computationally, Double Digest problem is more complex than Partial Digest problem
atgaccgggatactgataccgtatttggcctaggcgtacacattagataaacgtatgaagtacgttagactcggcgccgccg acccctattttttgagcagatttagtgacctggaaaaaaaatttgagtacaaaacttttccgaatactgggcataaggtaca tgagtatccctgggatgacttttgggaacactatagtgctctcccgatttttgaatatgtaggatcattcgccagggtccga gctgagaattggatgaccttgtaagtgttttccacgcaatcgcgaaccaacgcggacccaaaggcaagaccgataaaggaga tcccttttgcggtaatgtgccgggaggctggttacgtagggaagccctaacggacttaatggcccacttagtccacttatag gtcaatcatgttcttgtgaatggatttttaactgagggcatagaccgcttggcgcacccaaattcagtgtgggcgagcgcaa cggttttggcccttgttagaggcccccgtactgatggaaactttcaattatgagagagctaatctatcgcgtgcgtgttcat aacttgagttggtttcgaaaatgctctggggcacatacaagaggagtcttccttatcagttaatgctgtatgacactatgta ttggcccattggctaaaagcccaacttgacaaatggaagatagaatccttgcatttcaacgtatgccgaaccgaaagggaag ctggtgagcaacgacagattcttacgtgcattagctcgcttccggggatctaatagcacgaagcttctgggtactgatagca
atgaccgggatactgatAAAAAAAAGGGGGGGggcgtacacattagataaacgtatgaagtacgttagactcggcgccgccg acccctattttttgagcagatttagtgacctggaaaaaaaatttgagtacaaaacttttccgaataAAAAAAAAGGGGGGGa tgagtatccctgggatgacttAAAAAAAAGGGGGGGtgctctcccgatttttgaatatgtaggatcattcgccagggtccga gctgagaattggatgAAAAAAAAGGGGGGGtccacgcaatcgcgaaccaacgcggacccaaaggcaagaccgataaaggaga tcccttttgcggtaatgtgccgggaggctggttacgtagggaagccctaacggacttaatAAAAAAAAGGGGGGGcttatag gtcaatcatgttcttgtgaatggatttAAAAAAAAGGGGGGGgaccgcttggcgcacccaaattcagtgtgggcgagcgcaa cggttttggcccttgttagaggcccccgtAAAAAAAAGGGGGGGcaattatgagagagctaatctatcgcgtgcgtgttcat aacttgagttAAAAAAAAGGGGGGGctggggcacatacaagaggagtcttccttatcagttaatgctgtatgacactatgta ttggcccattggctaaaagcccaacttgacaaatggaagatagaatccttgcatAAAAAAAAGGGGGGGaccgaaagggaag ctggtgagcaacgacagattcttacgtgcattagctcgcttccggggatctaatagcacgaagcttAAAAAAAAGGGGGGGa
atgaccgggatactgataaaaaaaagggggggggcgtacacattagataaacgtatgaagtacgttagactcggcgccgccg acccctattttttgagcagatttagtgacctggaaaaaaaatttgagtacaaaacttttccgaataaaaaaaaaggggggga tgagtatccctgggatgacttaaaaaaaagggggggtgctctcccgatttttgaatatgtaggatcattcgccagggtccga gctgagaattggatgaaaaaaaagggggggtccacgcaatcgcgaaccaacgcggacccaaaggcaagaccgataaaggaga tcccttttgcggtaatgtgccgggaggctggttacgtagggaagccctaacggacttaataaaaaaaagggggggcttatag gtcaatcatgttcttgtgaatggatttaaaaaaaaggggggggaccgcttggcgcacccaaattcagtgtgggcgagcgcaa cggttttggcccttgttagaggcccccgtaaaaaaaagggggggcaattatgagagagctaatctatcgcgtgcgtgttcat aacttgagttaaaaaaaagggggggctggggcacatacaagaggagtcttccttatcagttaatgctgtatgacactatgta ttggcccattggctaaaagcccaacttgacaaatggaagatagaatccttgcataaaaaaaagggggggaccgaaagggaag ctggtgagcaacgacagattcttacgtgcattagctcgcttccggggatctaatagcacgaagcttaaaaaaaaggggggga
atgaccgggatactgatAgAA AAgAAAGGtt ttGGGggcgtacacattagataaacgtatgaagtacgttagactcggcgccgccg acccctattttttgagcagatttagtgacctggaaaaaaaatttgagtacaaaacttttccgaatacAA AAtAAAAcGG GGcGGGa tgagtatccctgggatgacttAAAAtAA AAtGG GGaGtGG GGtgctctcccgatttttgaatatgtaggatcattcgccagggtccga gctgagaattggatgcAAAAAAAGGGatt attGtccacgcaatcgcgaaccaacgcggacccaaaggcaagaccgataaaggaga tcccttttgcggtaatgtgccgggaggctggttacgtagggaagccctaacggacttaatAtAA AAtAAAGGaa aaGGGcttatag gtcaatcatgttcttgtgaatggatttAA AAcAA AAtAAGGGct ctGG GGgaccgcttggcgcacccaaattcagtgtgggcgagcgcaa cggttttggcccttgttagaggcccccgtAtAAAcAAGGaGGGccaattatgagagagctaatctatcgcgtgcgtgttcat aacttgagttAAAAAAtAGGGaGcc ccctggggcacatacaagaggagtcttccttatcagttaatgctgtatgacactatgta ttggcccattggctaaaagcccaacttgacaaatggaagatagaatccttgcatAct ctAAAAAGGaGcGG GGaccgaaagggaag ctggtgagcaacgacagattcttacgtgcattagctcgcttccggggatctaatagcacgaagcttAct ctAAAAAGGaGcGG GGa
atgaccgggatactgatagaagaaaggttgggggcgtacacattagataaacgtatgaagtacgttagactcggcgccgccg acccctattttttgagcagatttagtgacctggaaaaaaaatttgagtacaaaacttttccgaatacaataaaacggcggga tgagtatccctgggatgacttaaaataatggagtggtgctctcccgatttttgaatatgtaggatcattcgccagggtccga gctgagaattggatgcaaaaaaagggattgtccacgcaatcgcgaaccaacgcggacccaaaggcaagaccgataaaggaga tcccttttgcggtaatgtgccgggaggctggttacgtagggaagccctaacggacttaatataataaaggaagggcttatag gtcaatcatgttcttgtgaatggatttaacaataagggctgggaccgcttggcgcacccaaattcagtgtgggcgagcgcaa cggttttggcccttgttagaggcccccgtataaacaaggagggccaattatgagagagctaatctatcgcgtgcgtgttcat aacttgagttaaaaaatagggagccctggggcacatacaagaggagtcttccttatcagttaatgctgtatgacactatgta ttggcccattggctaaaagcccaacttgacaaatggaagatagaatccttgcatactaaaaaggagcggaccgaaagggaag ctggtgagcaacgacagattcttacgtgcattagctcgcttccggggatctaatagcacgaagcttactaaaaaggagcgga
atgaccgggatactgatAgAA AAgAAAGGtt ttGGGggcgtacacattagataaacgtatgaagtacgttagactcggcgccgccg acccctattttttgagcagatttagtgacctggaaaaaaaatttgagtacaaaacttttccgaatacAA AAtAAAAcGG GGcGGGa tgagtatccctgggatgacttAAAAtAA AAtGG GGaGtGG GGtgctctcccgatttttgaatatgtaggatcattcgccagggtccga gctgagaattggatgcAAAAAAAGGGatt attGtccacgcaatcgcgaaccaacgcggacccaaaggcaagaccgataaaggaga tcccttttgcggtaatgtgccgggaggctggttacgtagggaagccctaacggacttaatAtAA AAtAAAGGaa aaGGGcttatag gtcaatcatgttcttgtgaatggatttAA AAcAA AAtAAGGGct ctGG GGgaccgcttggcgcacccaaattcagtgtgggcgagcgcaa cggttttggcccttgttagaggcccccgtAtAAAcAAGGaGGGccaattatgagagagctaatctatcgcgtgcgtgttcat aacttgagttAAAAAAtAGGGaGcc ccctggggcacatacaagaggagtcttccttatcagttaatgctgtatgacactatgta ttggcccattggctaaaagcccaacttgacaaatggaagatagaatccttgcatAct ctAAAAAGGaGcGG GGaccgaaagggaag ctggtgagcaacgacagattcttacgtgcattagctcgcttccggggatctaatagcacgaagcttAct ctAAAAAGGaGcGG GGa AgAA AAgAAAGGtt ttGGG cAA AAtAAAAcGG GGcGGG .. ..|.. ..|||.|.. ..|||
Find a motif in a sample of
An experiment showed that when gene X is
How can one gene have such drastic
Gene X encodes regulatory protein, a.k.a. a
The 20 unexpressed genes rely on gene X’s TF to
A single TF may regulate multiple genes
Every gene contains a regulatory region (RR) typically
stretching 100-1000 bp upstream of the transcriptional start site
Located within the RR are the Transcription Factor
Binding Sites (TFBS), also known as motifs, specific for a given transcription factor
TFs influence gene expression by binding to a specific
location in the respective gene’s regulatory region - TFBS
A TFBS can be located anywhere within the
TFBS may vary slightly across different
Motifs can mutate on non
important bases
The five motifs in five
different genes have mutations in position 3 and 5
Representations called
motif logos illustrate the conserved and variable regions of a motif TGGGGGA TGAGAGA TGGGGGA TGAGAGA TGAGGGA
Genes are turned on or off by regulatory
These proteins bind to upstream regulatory
Regulatory protein (TF) binds to a short DNA
So finding the same motif in multiple genes’
We do not know the motif sequence We do not know where it is located relative to
Motifs can differ slightly from one gene to the
How to discern it from “random” motifs?
Given a random sample of DNA sequences:
cctgatagacgctatctggctatccacgtacgtaggtcctctgtgcgaatctatgcgtttccaaccat agtactggtgtacatttgatacgtacgtacaccggcaacctgaaacaaacgctcagaaccagaagtgc aaacgtacgtgcaccctctttcttcgtggctctggccaacgagggctgatgtataagacgaaaatttt agcctccgatgtaagtcatagctgtaactattacctgccacccctattacatcttacgtacgtataca ctgttatacaacgcgtcatggcggggtatgcgttttggtcgtcgtacgctcgatcgttaacgtacgtc
Find the pattern that is implanted in each of
Additional information:
The hidden sequence is of length 8 The pattern is not exactly the same in each
The patterns revealed with no mutations:
cctgatagacgctatctggctatccacgtacgtaggtcctctgtgcgaatctatgcgtttccaaccat agtactggtgtacatttgatacgtacgtacaccggcaacctgaaacaaacgctcagaaccagaagtgc aaacgtacgtgcaccctctttcttcgtggctctggccaacgagggctgatgtataagacgaaaatttt agcctccgatgtaagtcatagctgtaactattacctgccacccctattacatcttacgtacgtataca ctgttatacaacgcgtcatggcggggtatgcgttttggtcgtcgtacgctcgatcgttaac acgt gtacg cgtc
acg cgta tacgt cgt
The patterns with 2 point mutations:
cctgatagacgctatctggctatccaGgtacTtaggtcctctgtgcgaatctatgcgtttccaaccat agtactggtgtacatttgatCcAtacgtacaccggcaacctgaaacaaacgctcagaaccagaagtgc aaacgt acgtTA TAgt gtgcaccctctttcttcgtggctctggccaacgagggctgatgtataagacgaaaatttt agcctccgatgtaagtcatagctgtaactattacctgccacccctattacatcttacgtCcAtataca ctgttatacaacgcgtcatggcggggtatgcgttttggtcgtcgtacgctcgatcgttaCcgtacgGc
The patterns with 2 point mutations:
cctgatagacgctatctggctatccaGgtacTtaggtcctctgtgcgaatctatgcgtttccaaccat agtactggtgtacatttgatCcAtacgtacaccggcaacctgaaacaaacgctcagaaccagaagtgc aaacgt acgtTA TAgt gtgcaccctctttcttcgtggctctggccaacgagggctgatgtataagacgaaaatttt agcctccgatgtaagtcatagctgtaactattacctgccacccctattacatcttacgtCcAtataca ctgttatacaacgcgtcatggcggggtatgcgttttggtcgtcgtacgctcgatcgttaCcgtacgGc
Can we still find the motif, now that we have 2 mutations?
To define a motif, lets say we know where the
The motif start positions in their sequences can
a
a G g t t a a c c T t C c c A t a t a c c g t t Alignment a c c g g t t T A T A g t t a c c g g t t C c c A t C c g c g t a t a c c g G _________________ A 3 0 0 1 0 0 3 1 1 1 1 0 Profile C 2 4 0 0 0 0 1 4 0 0 G 0 1 1 4 0 0 0 0 0 0 3 1 T 0 0 0 0 0 5 1 0 1 0 1 4 _________________ Consensus A C C G G T A T A C C G T T
Line up the patterns by
Construct matrix profile
Consensus nucleotide in
Think of consensus as an “ancestor” motif,
The distance between a real motif and the
We have a guess about the consensus
Need to introduce a scoring function to
t - number of sample DNA sequences n - length of each DNA sequence DNA - sample of DNA sequences (t x n array) l - length of the motif (l-mer) si - starting position of an l-mer in sequence i s=(s1, s2,… st) - array of motif’s starting
cctgatagacgctatctggctatccaGgtacTtaggtcctctgtgcgaatctatgcgtttccaaccat agtactggtgtacatttgatCcAtacgtacaccggcaacctgaaacaaacgctcagaaccagaagtgc aaacgtTAgtgcaccctctttcttcgtggctctggccaacgagggctgatgtataagacgaaaatttt agcctccgatgtaagtcatagctgtaactattacctgccacccctattacatcttacgtCcAtataca ctgttatacaacgcgtcatggcggggtatgcgttttggtcgtcgtacgctcgatcgttaCcgtacgGc
l = 8 t=5 =5 s1 = 26 26
s2 = 21
21 s3= 3 3 s4 = 56 56 s5 = 60 60 s DNA
n = 69
Given s = (s1, … st) and DNA:
a G g t a c T t C c A t a c g t a c g t T A g t a c g t C c A t C c g t a c g G _________________ A 3 0 1 0 3 1 1 0 C 2 4 0 0 1 4 0 0 G 0 1 4 0 0 0 3 1 T 0 0 0 5 1 0 1 4 _________________ Consensus a c g t a c g t Score 3+4+4+5+3+4+3+4=30
l t
l i G C T A k
i k count
1 } , , , {
) , (
If starting positions s=(s1, s2,… st) are given,
But… the starting positions s are usually not
Goal: Given a set of DNA sequences, find a set of l-
Input: A t x n matrix of DNA, and l, the length of the
Output: An array of t starting positions
Compute the scores for each possible
The best score will determine the best profile and
The goal is to maximize Score(s,DNA) by varying
1.
BruteForceMotifSearch(DNA DNA, t, n, l)
2. 2.
bestScore Score 0
3. 3.
for each s= s=(s1,s2 , . . ., st) from (1,1 . . . 1) to (n-l+1, . . ., n-l+1)
4.
if if (Score(s,DNA DNA) > bestScore core)
5.
bestScore Score score(s, DNA DNA)
6.
bestMoti tMotif (s1,s2 , . . . , st)
7. 7.
return rn bestMotif
Given a set of t DNA sequences find a
This pattern will be the motif
Hamming distance:
dH(v,w) is the number of nucleotide pairs
Given v = “acgtacgt” and s
acgtacgt
cctgatagacgctatctggctatccacgtacgtaggtcctctgtgcgaatctatgcgtttccaaccat acgtacgt agtactggtgtacatttgatacgtacgtacaccggcaacctgaaacaaacgctcagaaccagaagtgc acgtacgt aaacgtacgtgcaccctctttcttcgtggctctggccaacgagggctgatgtataagacgaaaatttt acgtacgt agcctccgatgtaagtcatagctgtaactattacctgccacccctattacatcttacgtacgtataca acgtacgt ctgttatacaacgcgtcatggcggggtatgcgttttggtcgtcgtacgctcgatcgttaacgtacgtc v is the sequence in red, x is the sequence in blue
TotalDistance(v,DNA
DNA) = 0
dH(v, x) = 0 dH(v, x) = 0 dH(v, x) = 0 dH(v, x) = 0 dH(v, x) =
Given v = “acgtacgt” and s
acgtacgt cctgatagacgctatctggctatccacgtacAtaggtcctctgtgcgaatctatgcgtttccaaccat acgtacgt agtactggtgtacatttgatacgtacgtacaccggcaacctgaaacaaacgctcagaaccagaagtgc acgtacgt aaaAgtCcgtgcaccctctttcttcgtggctctggccaacgagggctgatgtataagacgaaaatttt acgtacgt agcctccgatgtaagtcatagctgtaactattacctgccacccctattacatcttacgtacgtataca acgtacgt ctgttatacaacgcgtcatggcggggtatgcgttttggtcgtcgtacgctcgatcgttaacgtaGgtc v is the sequence in red, x is the sequence in blue
TotalDistance(v,DNA
DNA) = 1+0+2+0+1 = 4
dH(v, x) = 2 dH(v, x) = 1 dH(v, x) = dH(v, x) = 0 dH(v, x) = 1
For each DNA sequence i, compute all dH(v, x),
where x is an l-mer with starting position si (1 < si < n – l l + 1)
Find minimum of dH(v, x) among all l-mers in
sequence i
TotalDistance(v,DNA) is the sum of the minimum
Hamming distances for each DNA sequence i
TotalDistance(v,DNA) = mins dH(v, s), where s is
the set of starting positions s1, s2,… st
Goal: Given a set of DNA sequences, find a
Input: A t x n matrix DNA, and l, the length of
Output: A string v of l nucleotides that
1.
2.
3.
4.
5.
6.
7.
The Motif Finding is a maximization problem while
However, the Motif Finding problem and Median
Need to show that minimizing TotalDistance
a G g t a c T t C c A t a c g t Alignment a c g t T A g t a c g t C c A t C c g t a c g G _________________ A 3 0 1 0 3 1 1 0 Profile C 2 4 0 0 1 4 0 0 G 0 1 4 0 0 0 3 1 T 0 0 0 5 1 0 1 4 _________________ Consensus a c g t a c g t Score 3+4+4+5+3+4+3+4 TotalDistance 2+1+1+0+2+1+2+1 Sum 5 5 5 5 5 5 5 5 At any column i
Scorei + TotalDistancei = t
Because there are l columns
Score + TotalDistance = l * t
Rearranging:
Score = l * t - TotalDistance
l * t is constant the minimization
the maximization of the left side
l t
Why bother reformulating the Motif Finding
The Motif Finding Problem needs to
The Median String Problem needs to
1.
BruteForceMotifSearch(DNA, t, n, l)
2.
bestS tScore core 0
3.
for each s= s=(s1,s2 , . . ., st) from (1,1 . . . 1) to (n-l+1, . . ., n-l+1)
4.
if if (Score(s,DNA) > bestSco core re)
5.
bestS tScore core Score(s, DNA)
6.
bestM tMot
if (s1,s2 , . . . , st)
7.
return bestMo Moti tif
How can we perform the line for each s= s=(s1,s2 , . . ., st) from (1,1 . . . 1) to (n-l+1, . . ., n-l+1) ? We need a method for efficiently structuring
This is not very different than exploring all t-
1.
2.
3.
4.
5.
6.
7.
For the Median String Problem we need to
aa… aa aa… ac aa… ag aa… at . . tt… tt
l
Let A = 1, C = 2, G = 3, T = 4 Then the sequences from AA…A to TT…T become:
11…11 11…12 11…13 11…14 . . 44…44
Notice that the sequences above simply list all numbers
as if we were counting on base 4 without using 0 as a digit
l
Suppose l = 2
aa ac ag at ca cc cg ct ga gc gg gt ta tc tg tt
Need to visit all the predecessors of a
Start
Linked list is not the most efficient data structure for motif
finding
Let’s try grouping the sequences by their prefixes aa ac ag at ca cc cg ct ga gc gg gt ta tc tg tt
a- c- g- t-
aa ac ag at ca cc cg ct ga gc gg gt ta tc tg tt
Characteristics of the search trees:
The sequences are contained in its leaves The parent of a node is the prefix of its
How can we move through the tree?
Four common moves in a search tree that we
Move to the next leaf Visit all the leaves Visit the next node Bypass the children of a node
1.
2. 2.
3.
4.
5.
6.
7. 7.
Given a current leaf a , we need to compute the “next” leaf:
The algorithm is common addition in radix k: Increment the least significant digit “Carry the one” to the next digit position when
Moving to the next leaf: 1- 2- 3- 4- 11 12 13 14 21 22 23 24 31 32 33 34 41 42 43 44
Location
Moving to the next leaf: 1- 2- 3- 4- 11 12 13 14 21 22 23 24 31 32 33 34 41 42 43 44
1.
2.
3. 3.
4.
5.
6.
7.
Moving through all the leaves in order: 1- 2- 3- 4- 11 12 13 14 21 22 23 24 31 32 33 34 41 42 43 44
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
So we can search leaves How about searching all vertices of the tree? We can do this with a depth first search
1.
NextVertex(a,i,L,k) // a : the array of digits
2.
if if i < L // i : prefix length
3.
a i+1 1 // L: max length
4.
return ( a,i+1) // k : max digit value
5.
el else
6.
for j l to 1
7.
if if aj < k
8.
aj aj +1
9.
return( a,j )
Moving to the next vertex: 1- 2- 3- 4- 11 12 13 14 21 22 23 24 31 32 33 34 41 42 43 44
Location
Moving to the next vertices: 1- 2- 3- 4- 11 12 13 14 21 22 23 24 31 32 33 34 41 42 43 44
next vertex moves
1.
2.
3.
4.
5.
6.
Bypassing the descendants of “2-”: 1- 2- 3- 4- 11 12 13 14 21 22 23 24 31 32 33 34 41 42 43 44
Location
Bypassing the descendants of “2-”: 1- 2- 3- 4- 11 12 13 14 21 22 23 24 31 32 33 34 41 42 43 44
1.
BruteForceMotifSearchAgain(DNA
2.
3.
4.
5.
6.
7.
8.
9.
Sets of s=(s1, s2, …,st) may have a weak profile for
Every row of alignment may add at most l to Score Optimism: if all subsequent (t-i) positions (si+1, …st)
If Score(s,i,DNA) + (t – i ) * l < BestSc
Use ByPass()
Since each level of the
This saves us from looking
Use NextVertex() and
ByPass() to navigate the tree
1.
BranchAndBoundMotifSearch(DNA,t,n,l)
2.
s (1,…,1)
3.
bestScore 0
4.
i 1
5.
while i > 0
6.
if i < t
7.
8.
if optimisticScore < bestScore
9.
(s, i) Bypass(s,i, n-l l +1)
10.
else
11.
(s, i) NextVertex(s, i, n-l +1)
12.
else
13.
if Score(s,DNA) > bestScore
14.
bestScore Score(s)
15.
bestMotif (s1, s2, s3, …, st)
16.
(s,i) NextVertex(s,i,t,n-l + 1)
17.
return bestMotif
Recall the computational differences between motif
The Motif Finding Problem needs to examine all
The Median String Problem needs to examine 4l
We want to use median string algorithm with the
Note that if the total distance for a prefix is
TotalDistance (prefix, DNA) > BestDistan Distance ce
We can eliminate that branch and BYPASS
1.
BranchAndBoundMedianStringSearch(DNA DNA,t,n,l l )
2. 2.
s (1,…,1)
3. 3.
bestD stDistance istance ∞
4.
i 1
5. 5.
while i > 0
6. 6.
if if i < l
7.
prefix ix string corresponding to the first i nucleotides of s
8.
misticDis cDistan tance ce TotalDistance(prefix fix,DNA DNA)
9.
if if optimisticDistanc isticDistance > bestD tDista istance ce
10.
(s, i i ) Bypass(s,i, l, 4)
11.
else
12.
(s, i ) NextVertex(s, s, i, l, 4)
13.
else
14.
word nucleotide string corresponding to s
15.
if TotalDistance(s,DNA DNA) < bestD tDista istanc nce
16.
bestD tDistan istance TotalDistance(word rd, DNA)
17.
bestWo tWord rd word
18.
(s,i i ) NextVertex(s,i,l, 4)
19. 19.
return urn bestWo tWord rd
Given an l-mer w, divided into two parts at point i
u : prefix w1, …, wi, v : suffix wi+1, ..., wl
Find minimum distance for u in a sequence No instances of u in the sequence have distance
Note this doesn’t tell us anything about whether u is
Repeating the process for the suffix v gives
Since u and v are two substrings of w, and
If d(prefix) + d(suffix) > bestDistance:
Motif w (prefix.suffix) cannot give a better
In this case, we can ByPass()
1.
ImprovedBranchAndBoundMedianString(DNA,t,n,l)
2.
s = (1, 1, …, 1)
3.
bestdistance = ∞
4.
i = 1
5.
while i > 0
6.
if i < l
7.
prefix = nucleotide string corresponding to (s1, s2, s3, …, si )
8.
9.
if (optimisticPrefixDistance < bestsubstring[ i ])
10.
bestsubstring[ i ] = optimisticPrefixDistance
11.
if (l - i < i )
12.
13.
else
14.
15.
if optimisticPrefixDistance + optimisticSufxDistance > bestDistance
16.
(s, i ) = Bypass(s, i, l, 4)
17.
else
18.
(s, i ) = NextVertex(s, i, l,4)
19.
else
20.
word = nucleotide string corresponding to (s1,s2, s3, …, st)
21.
if TotalDistance( word, DNA) < bestDistance
22.
bestDistance = TotalDistance(word, DNA)
23.
bestWord = word
24.
(s,i) = NextVertex(s, i,l, 4)
25.
return bestWord