genome reassembly from fragments
play

Genome Reassembly From Fragments 7 January 2019 OSU CSE 1 Genome - PowerPoint PPT Presentation

Genome Reassembly From Fragments 7 January 2019 OSU CSE 1 Genome A genome is the encoding of hereditary information for an organism in its DNA The mathematical model of a genome is a string of character , where each character is one


  1. Genome Reassembly From Fragments 7 January 2019 OSU CSE 1

  2. Genome • A genome is the encoding of hereditary information for an organism in its DNA • The mathematical model of a genome is a string of character , where each character is one of 'A' , 'C' , 'G' , or 'T' , which stand for the names of the four nucleotides that occur on a DNA backbone 7 January 2019 OSU CSE 2

  3. Quoted from Wikipedia: • An analogy to the human genome stored on DNA is that of instructions stored in a book: – The book (genome) contains 23 chapters (chromosomes); – Each chapter contains 48 to 250 million letters (A,C,G,T) without spaces; – Hence, the book contains over 3.2 billion letters total; – The book fits into a cell nucleus the size of a pinpoint; – At least one copy of the book (all 23 chapters) is contained in most cells of our body. 7 January 2019 OSU CSE 3

  4. Quoted from Wikipedia: This is what we care about for • An analogy to the human genome stored on the next project... DNA is that of instructions stored in a book: – The book (genome) contains 23 chapters (chromosomes); – Each chapter contains 48 to 250 million letters (A,C,G,T) without spaces; – Hence, the book contains over 3.2 billion letters total; – The book fits into a cell nucleus the size of a pinpoint; – At least one copy of the book (all 23 chapters) is contained in most cells of our body. 7 January 2019 OSU CSE 4

  5. Genome Sequencing • The Human Genome Project was designed to determine the entire sequence of human DNA and to map its mathematical model (genotype) to physical and functional manifestations in a person (phenotype) • Sequencing is done “piece-by-piece” because it is effectively impossible to do anything directly with 3.2 billion nucleotides length = 3.2 billion 7 January 2019 OSU CSE 5

  6. Genome Sequencing: Step 1 • Use enzymes that can cut up many strands of the same DNA (each a string of length about 3.2 billion letters or “bases”) into pieces at different locations, creating a “soup” of fragments each of much smaller length (on the order of 1000) 7 January 2019 OSU CSE 6

  7. Genome Sequencing: Step 2 • Use machines that can physically sequence each of these fragments to determine their mathematical models – Example: "TCTAAGCCTA..." 7 January 2019 OSU CSE 7

  8. Genome Sequencing: Step 2 • Use machines that can physically sequence each of these fragments to determine their mathematical models – Example: "AGTAGAACG..." 7 January 2019 OSU CSE 8

  9. Genome Sequencing: Step 2 • Use machines that can physically sequence each of these fragments to determine their mathematical models 7 January 2019 OSU CSE 9

  10. Genome Sequencing: Step 3 • Use computer algorithms to reassemble the original very long string model from the models of its fragments, by combining fragments based on their overlaps 7 January 2019 OSU CSE 10

  11. Genome Sequencing: Step 3 • Use computer algorithms to reassemble the original very long string model from the models of its fragments, by combining fragments based on their overlaps How would you do it — at all, never mind doing it efficiently? 7 January 2019 OSU CSE 11

  12. Greedy Reassembly: Step 1 • A naïve (but still interesting) idea is to pick two fragments with the most overlap and to combine them into a longer fragment 7 January 2019 OSU CSE 12

  13. Greedy Reassembly: Step 1 • A naïve (but still interesting) idea is to pick two fragments with the most overlap and to combine them into a longer fragment 7 January 2019 OSU CSE 13

  14. Greedy Reassembly: Step 1 • A naïve (but still interesting) idea is to pick two fragments with the most overlap and to combine them into a longer fragment 7 January 2019 OSU CSE 14

  15. Finding Overlaps • Given two strings, what is the longest string that is a prefix of one and a suffix of the other? • Example of one pair of strings: s1 = "AGTAGAACG" s2 = "CGAGGTAGT" 7 January 2019 OSU CSE 15

  16. Finding Overlaps • Given two strings, what is the longest string that is a prefix of one and a suffix of the other? • Example of one pair of strings: s1 = "AGTAGAA CG " s2 = " CG AGGTAGT" 7 January 2019 OSU CSE 16

  17. Finding Overlaps • Given two strings, what is the longest string that is a prefix of one and a suffix of the other? • Example of one pair of strings: s1 = " AGT AGAACG" s2 = "CGAGGT AGT " 7 January 2019 OSU CSE 17

  18. Finding Overlaps • Given two strings, what is the longest string that is a prefix of one and a suffix of the other? • Example of one pair of strings: s1 = " AGT AGAACG" The longest string that is s2 = "CGAGGT AGT " a prefix of one and a suffix of the other is "AGT" . 7 January 2019 OSU CSE 18

  19. Combine • If these two strings have the most overlap of any pair in the “soup”, then we remove these two strings from the “soup”: " AGT AGAACG" "CGAGGT AGT " and replace them by this one: "CGAGGT AGT AGAACG" 7 January 2019 OSU CSE 19

  20. Combine • If these two strings have the most overlap The idea is that both the of any pair in the “soup”, then we remove shorter strings could have been fragments of this these two strings from the “soup”: longer string. " AGT AGAACG" "CGAGGT AGT " and replace them by this one: "CGAGGT AGT AGAACG" 7 January 2019 OSU CSE 20

  21. Combine • If these two strings have the most overlap of any pair in the “soup”, then we remove these two strings from the “soup”: " AGT AGAACG" "CGAGGT AGT " Notice that math model of the “soup” is a and replace them by this one: finite set of string of character , so in a Java program it can be of type "CGAGGT AGT AGAACG" Set<String> . 7 January 2019 OSU CSE 21

  22. Greedy Reassembly: Step 2 • Continue the process until there is only one fragment in the “soup” (declare success) 7 January 2019 OSU CSE 22

  23. Greedy Reassembly: Step 2 • Continue the process until there is only one fragment in the “soup” (declare success), or until no two fragments overlap at all (too bad) 7 January 2019 OSU CSE 23

  24. Success? • Even if there is only one fragment left, it might not be the original long string that was chopped up — but it’s a good guess! – And after all, we are just guessing; critical information is lost when the long strand is chopped up into fragments, but we can reassemble it from fragments with high probability if enough copies of the original string are chopped up into fragments 7 January 2019 OSU CSE 24

  25. Project • The project is to do greedy reassembly, not for a genome of length 3.2 billion, but rather for a reasonably short piece of text (e.g., the Gettysburg Address ), many copies of which have been chopped up into random fragments for you to reassemble 7 January 2019 OSU CSE 25

  26. Resources • Wikipedia: Genome – http://en.wikipedia.org/wiki/Genome • Wikipedia: Human Genome Project – http://en.wikipedia.org/wiki/Human_Genome_Project • Wikipedia: Whole Genome Sequencing – http://en.wikipedia.org/wiki/Genome_sequencing • Wikipedia: Sequence Assembly – http://en.wikipedia.org/wiki/Sequence_assembly 7 January 2019 OSU CSE 26

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend