1 / 32

Structural Alignment of Pseudo-knotted RNA

Structural Alignment of Pseudo-knotted RNA. RNA pseudo-knotted structures. RNA alignment problem has been solved for RNAs with a regular structure, i.e. non-pseudo-knotted structures. Regular structure: All base pair are non-crossing. Pseudo-knotted structure:

abyers
Download Presentation

Structural Alignment of Pseudo-knotted RNA

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Structural Alignment of Pseudo-knotted RNA

  2. RNA pseudo-knotted structures RNA alignment problem has been solved for RNAs with a regular structure, i.e. non-pseudo-knotted structures. Regular structure: All base pair are non-crossing. Pseudo-knotted structure: Some of the base pairs are crossing.

  3. Solving problem for pseudo-knotted RNAs Dynamic programming technique used to align subsequences. Challenge: Aligning RNA with general pseudoknot sturctures is hard. (Jiang et. al JCB 2002). Formal definition of pseudo-knots such that • To classify the pesudoknot strcutres so that most common pseudoknot is compuatable. • computation is not very expensive • biologically important

  4. Definition: simple pseudo-knot • How can we define a pseudo-knot? • There are many pseudo-knot definitions: Akutsu [journal 2002?], Rivas&Eddy, …. • For pediction. • We start with Akutsu’s simple pseudo-knot formalism: • All base pairs non-crossing and horizontal when rotated to form 2 loops.

  5. Sub-structure for a simple pseudo-knot • Regular structure: • continuous subintervals as • substructure of recursion. • Simple Pseudo-knot: • can not use this substructure • due to interweaving base pairs. For DP algorithm, how to define sub-structure?

  6. Sub-structure for a simple pseudo-knot sub-pseudoknotP(i, j, k) as the union of two subintervals P(i, j, k) = [i0, i] U [j, k] frontier (i.j.k)

  7. Naive approach B[i, j, k, i’, j’, k’]: Optimal score of the alignment of the sub-pseudoknot P’(i’,j’,k’) in target to sub-pseudoknot P(i,j,k) in query. • Compute B[i, j, k, i’, j’, k’] • O(m3n3) scores. (m:query, n:target) Instead of all triplets in the query, consider only the valid sub-pseudo-knots that will represent the simple pseudo-knot. query target

  8. 13 14 39 38 12 15 11 16 37 10 17 36 9 18 35 8 19 34 7 20 33 6 21 32 5 22 31 4 23 30 3 24 29 2 28 1 25 27 26 Use a chain of sub-pseudoknots to represent simple pseudo-knot P(13, 14, 39) P(13, 14, 38) P(13, 14, 37) P(13, 14, 36) P(13, 15, 35) P(12, 15, 35) P(11, 16, 35) P(10, 16, 35) ……..

  9. P(13, 14, 39) 13 14 39 38 P(13, 14, 38) 12 15 11 P(13, 14, 37) 16 37 10 17 36 P(13, 14, 36) 9 18 35 8 P(13, 15, 35) 19 34 7 20 33 P(12, 15, 35) 6 21 32 5 P(11, 16, 35) 22 31 4 23 30 P(10, 16, 35) 3 29 24 2 28 …….. 1 25 27 26 Why Chaining? • DP: use sub-optimal solution of the child sub-structure to compute optimal score at each step. • compute B[i,j,k, i’,j’, k’] • => O(mn3) scores • (m:query, n:target)

  10. Alignment Algorithm Recursions:(i,j) is a base pair case • B[i, j, k , i’, j’, k’] = max {MATCH, INSERT, DELETE} MATCH: (i,j) and (i’,j’) are corresponding pairs query target i j k’ k i’ j’ i-1 j+1 j’+1 i’-1

  11. Alignment Algorithm Recursions:(i,j) is a base pair case • B[i, j, k , i’, j’, k’] = max {MATCH, INSERT, DELETE} DELETION: i is deleted query target i j k’ k i’ j’ i-1

  12. Alignment Algorithm Recursions:(i,j) is a base pair case • B[i, j, k , i’, j’, k’] = max {MATCH, INSERT, DELETE} DELETION: j is deleted query target i j k’ k i’ j’ j+1

  13. Alignment Algorithm Recursions:(i,j) is a base pair case • B[i, j, k , i’, j’, k’] = max {MATCH, INSERT, DELETE} DELETION: i and j are deleted query target i j k’ k i’ j’ j+1 i-1

  14. Alignment Algorithm Recursions:(i,j) is a base pair case • B[i, j, k , i’, j’, k’] = max {MATCH, INSERT, DELETE} INSERTION: i’ is inserted query target i j k’ k i’ j’ i’-1

  15. Alignment Algorithm Recursions:(i,j) is a base pair case • B[i, j, k , i’, j’, k’] = max {MATCH, INSERT, DELETE} INSERTION: j’ is inserted query target i j k’ k i’ j’ j’+1

  16. Alignment Algorithm Recursions:(i,j) is a base pair case • B[i, j, k , i’, j’, k’] = max {MATCH, INSERT, DELETE} INSERTION: k’ is inserted query target i j k’ k i’ j’ k’-1

  17. Simple Pseudo-knot in a Regular Structure: S in R Use a binary tree to represent RNA Solid circular nodes correspond to the actual base pairs. Empty circular nodes correspond to unpaired bases. Rectangular node correspond to sub-tree representing pseudo-knotted region

  18. Simple pseudo-knot in a simple pseudo-knot: recursive simple pseudo-knot • S in S • R in S

  19. Which structures can we handle? • Time complexity increases with the recursion depth of the pseudo-knotted region! • R: regular structure • S: simple pseudo-knot • R: O(mn3) • S: O(mn4) • S in R: O(mn4) • R in S: O(mn5) • R in S in R: O(mn5) = S in S in R: O(mn5) • R in S in S in R = O(mn6) • .…….

  20. Can we handlesimple pseudo-knots with higher degree:standard pseudo-knots?

  21. Can we handlesimple pseudo-knots with higher degree:standard pseudoknots? • Yes! By revising the sub-pseudoknot structure and the recursion cases accordingly. query target

  22. Can we handlerecursive standard pseudoknots? Yes! Same reasoning with recursive simple pseudoknots.

  23. What is left? What can we NOThandle? ?We can handle the class of pseudoknots defined by Akutsu which is the second largest class currently defined. We can additionally handle standard and recursive standard pseudoknots which are defined by us. A&U A&U U {standard/recursive standard pseudoknots} R&E The largest class is defined by Rivas and Eddy. An example from this class we can not handle: We can handle this! (Standard pseudo-knot of degree 4) We can NOT handle this!

  24. Implementation: PAL • C++ implementation of our algorithm. • input: • a query sequence with known structure (R/S/S in R) • a target sequence • output: • all high scoring local alignments in the target sequence

  25. Testing • Test Data: • RFAM database, 6 RNA families with simple pseudo-knotted structures. (simple pseudo-knots in regular structure) • UPSK • Antizyme • Corona FSE • Corona pk3 • Parecho CRE • IFN gamma

  26. Test 1: Structure Prediction • How good is PAL in inferring structure of the target sequence? • Pick 2 seed members of an RNA family as query and target. • Align them. • Compare the inferred structure of target with annotated structure in Rfam.

  27. Test 1: Structure PredictionResults • TP, FP, FN, Sensitivity, Specificity • Specificity = TP/(TP+FP) • Sensitivity = TP/(TP+FN) • Both measure is ~0.95 • PAL is a strong predictor of structure

  28. Test 2: Homologue Search • How well is PAL in finding the homologues of an RNA sequence? • Generate a random genome. • Insert the members of an RNA family. • Pick one of the members as a query. • Search for the homologues of the query. • Can we locate the members?

  29. Test 2: Homologue SearchResults

  30. Novel Homolologues Search • Searched mouse, rat and gerbil genomes for homologues of • IFN-gamma RNA family.

  31. Conclusion • PAL is a viable tool in finding novel homologues and inferring structure. • We hope PAL will help to understand and explore the impact of • pseudo-knotted RNAs in cellular function.

More Related