Download presentation
Presentation is loading. Please wait.
Published byGeorgia Amanda Morgan Modified over 9 years ago
2
. Finding Motifs in Promoter Regions Libi Hertzberg Or Zuk
3
2 Overview u Introduction and Definitions u P-value Algorithm u Experimental Results u Generalizations and future work
4
3 Transcriptional Regulation in the cell: Transcription Factor (TF) Regulatory protein DNA REGULATOR mRNA of regulated gene (complex) Regulatory protein Promoter motif TF binds (singular) Promoter motif Regulatory protein RNA polymerase
5
4 Motif Representation We need to represent the motif – the TF binding site. There are three known representations: u Consensus – Most frequent letter in every position u IUPAC code – Allow all letters with frequency above a threshold in every position u Position Specific Weight Matrix – Count number of occurrences of every letter in every position - More Informative ! Known binding sites:
6
5 An Example: A010003 C100341 T145201 G300010 An alignment of 5 known binding sites of a TF Position Specific Weight Matrix - F
7
6 Giving a Score to a Potential Binding Site u We are given a site R=(r 1,..., r L ). We want to know how likely it is to be bound by the TF. We compute how well it fits to the weight matrix of the TF. u We do this by calculating the Likelihood function of the site – namely, the probability that it would have been generated given that it is indeed a binding site of this TF.
8
7 u Likelihood(“GATTCC”) = (3/5)*(1/5)*(5/5)*(2/5)*(4/5)*(1/5) = 0.00768 A010003 C100341 T145201 G300010 F =
9
8 The Score u By taking log on the likelihood of R we get the score of R, which is the Loglikelihood of R. u score(“GATTCC”) = Loglikelihood(“GATTCC”) = log(3/5)+log(1/5)+log(5/5)+log(2/5)+log(4/5)+log(1/5) = -4.869 u Likelihood(“GATTCC”) = (3/5)*(1/5)*(5/5)*(2/5)*(4/5)*(1/5) = 0.00768
10
9 The PSSM u For example, M G,1 = log(3/5) A010003 C100341 T145201 G300010 F = u From the weight matrix F, we compute a Position Specific Score Matrix (PSSM) M by :
11
10 Finding The Motif We are given a TF and a gene. We want to know if this gene is regulated by the TF. Our Input : u The sequence of the promoter region of the gene u The PSSM of the TF A simple Algorithm : Scan the promoter region, and at each position calculate the score according to the PSSM. Take the best position (i.e. the one with the highest score) to be the suspected binding site. AAGTTGCCGAGATCGTAGCTATCGATCGATCGACAGCTAAC -2.3 -4.5 -1.2 -5.2 -0.5
12
11 The Problem Problem : In any (e.g. random) sequence we will find some best position (and best score). How do we assign statistical significance (p-value) to the position and score we have found. Statistical Evaluation The Goal of Our Work AAGTTGCCGAGATCGTAGCTATCGATCGATCGACAGCTAAC -2.3 -4.5 -1.2 -5.2 -0.5
13
12 Overview u Introduction and Definitions u P-value Algorithm u Experimental Results u Generalizations and future work
14
13 What Do We Want To Calculate? u Let N be the promoter length, and L the length of the TF binding site. Suppose we scanned the promoter and have found that the maximal score had the value t. u The p value is : the probability that the maximal score in a random sequence of length N, will be above the threshold t.
15
14 The Algorithm has two Steps : 1. Finding the set of all the sequences of length L, with a score above the threshold t. 2. Calculate the probability of finding at least one of those sequences in a random sequence of length N.
16
15 Step One : Finding the sequences u Let K = K(t) be the number of sequences of length L (out of the 4 L ) with a score above t. u We have a branch and bound algorithm for enumerating them in time linear in K. u Problem : In some cases K might be too large. For example, Suppose L=20, and only one of a thousand sequences of length L has a score higher than t. It means K=4 20 /1000 = 4 15 ~ 1billion.
17
16 Approximating K u If K is too large we cannot enumerate all the K sequences, but only try to estimate their number (i.e. K). u There are various methods to do so (Gaussian approximation, Statistical Mechanics, Large Deviations techniques). We used Generating Functions method, which proved to be the best. The method can give both lower and upper bounds on the correct number K.
18
17
19
18 Two Steps : 1. Finding the set of all the sequences of length L, with score above the threshold t. 2. Calculate the probability of finding at least one of those sequences in a random sequence of length N.
20
19 Step Two : Calculating Probabilities u We are given a set of K sequences. We need to calculate the probability of finding at least one of them in a random sequence of length N. u First, let’s consider a simpler problem, where we have one target R (K = 1).
21
20 u Define : H – Number of occurrences of R in a promoter region of length N. R = u Our p value is : P(H > 0) = 1 – P(H = 0) AACG AAACGGTTGTTACAACGGTTCCTCCAACG H = 3
22
21 A Naive Approximation u At a specific position, the probability of R appearing is 1/4 L, and the probability of R not appearing is (1 – 1/4 L ) u A naive approximation : We have N-L+1 possible start positions, so : P(H = 0) ~ (1 – 1/4 L ) N-L+1 u Problem : We have neglected correlations !
23
22 Why Do Correlations Matter ? TAAAAA CTAA ATAA TAAC TAAA TTAA GTAATAAG TAAT TAA appears in 8 sequences of length 4 P(H > 0) = 8/4 4 AAAAAAAC TAAA CAAA GAAAAAAT AAAG AAA appears in 7 sequences of length 4 P(H > 0) = 7/4 4 The Difference is in the self-overlapping pattern of them: TAA TAA AAA AAA No Self overlaps :Maximal number of self overlaps: Less self overlaps Higher P(H>0)
24
23 The effect of self overlaps u The Mean of H Is : E(H) = (N-L+1) * (1/4 L ) Independent of the specific sequence R. u Proof:
25
24 The effect of self overlaps Less self overlaps Higher P(H>0) AAAAAA TAAAAA u The correlation between ‘close’ X i ’s depends on the specific sequence R. R 1 = R 2 =
26
25 Algorithm u We have developed a recursive algorithm which takes into account the correlations. It calculates the exact value of P(H > 0). u In the more interesting case, where we have a set of K target sequences, our method still applies. u If we assume that the promoter’s DNA is not random but there are different probabilities for A,T,C,G, the same algorithm still works. u Time Complexity : O(N * K log K)
27
26 Algorithm (Cont.) u When K is too large, we don’t know the exact sequences, but only (an approximation of) their number. u What we do : Take the worst-case scenario (i.e. highest P(H > 0) possible) u Highest p value : fewest overlaps. We assume no overlaps at all.
28
27 Algorithm (Cont.) u The case of no overlaps is possible for K < 4 L /L. u We are usually interested in much smaller values of K. Thus, for our case of interest, the bound we get is quite tight. Upper Bound on K Lower Bound on Overlaps Upper Bound on P(H>0) - the P value!
29
28 Estimate K (For each pair!!) Small Enumerate K sequences Calculate pvalue Large Bound pvalue Scan to get Max Scores Transcription Factors Weight Matrices FDR Gene's Promoter Regions Input Output Sketch Of The System : Statistical Evaluation
30
29 Overview u Introduction and Definitions u P-value Algorithm u Experimental Results u Generalizations and future work
31
30 A Comparison with Matinspector We used the Promoter Database of Saccharomyces cerevisiae. It contains genes and for every gene the TFs that are known to bind its promoter. We took 24 Transcription Factors whose PSWM is known, and 135 promoters of genes which are known to be bound by at least one of them. Our Results: We calculated the p-value (using the algorithm) for each of the TFs on each of the genes.
32
31 Our Results Each gene has 25 p-values of all the TFs. We used the FDR method to find the statistical significant TFs for every gene. Here the threshold for the FDR is 0.1, but we will check the results for a range of threshold values
33
32 Our Results u After we found statistical significant TFs for every gene, we compared the results with the data from the database. There are 2 parameters: 1. False positives rate – TFs that we found as statistical significant, but are not known to be bound to the gene. 2. False negatives rate – TFs that are known to be bound, but we didn’t find. Lower parameters values better results
34
33 Our Results Graph We calculated the average of these 2 parameters (False positives rate, false negatives rate) on all the genes, For a range of FDR threshold parameter values, Q = 0.01,…,0.45 Notice that the false positives rate is very close to the FDR threshold value
35
34 Matinspector Results u For every gene Matinspector gives the number of occurrences of every TF in its promoter, and an estimation of the expected number of occurrences (re value). u To compare to our results, we decided to declare a TF as significant if it was found more times than it is expected to be found, or, in other words, if the ratio (expected number)/(number of occurrences) is lower than a certain threshold.
36
35 Results Graphs Matinspector Results Our Results In our results the average of the 2 parameters (green) is always lower, And the false positives rate (red) is always much lower
37
36 Comparison with Synthetic Data The left graph shows lower error rates then in our true data. The right graph shows error rates similar to those in our data, thus suggesting an estimate for the amount of missing real binding sites in the database. Synthetic - All positives are annotated Synthetic - 40% of positives are not annotated Real data
38
37 Overview u Introduction and Definitions u P-value Algorithm u Experimental Results u Generalizations and future work
39
38 Markov Models u In true DNA sequences, the nucleotides are not independent but rather posses statistical dependencies at close distances. u To model this, we used a markov model, in which the distribution of each letter depends on some m previous ones. m is denoted as the size of the model. u Example : Each letter depends on it’s previous : 1 st \2 n d A C T G A0.370.170.180.28 C0.320.200.170.31 T0.300.230.190.27 G0.250.200.170.37
40
39 Markov Models (Cont.) u We can use this for both the binding site model and the background (‘random’) model. The more realistic the model, we hope to get more realistic p values. u We obtain a tradeoff. As we increase m : u Advantages : More reliable p values Reduce false positive/negative errors u Drawbacks : l Need more data to represent the model l Computational complexity increases
41
40 Other Possible Directions u Account for multiple occurrences: P(H = n). u Account for combinations of motifs. Find pairs (or larger groups) which are statistically significant. u Use close genomes (e.g. human and mouse) in order to reduce false positives rate. u Combine with expression data (how ?)
42
41 The END u Ido Kanter u Gaddy Getz u Eytan Domany Thanks to
Similar presentations
© 2024 SlidePlayer.com Inc.
All rights reserved.