1 / 35

Next Generation Sequencing, Assembly, and Alignment Methods

Next Generation Sequencing, Assembly, and Alignment Methods . Andy Nagar. Agenda. Background Next Generation Sequencing Sequence Assembly Sequence Alignment Traditional Alignment Algorithms Next Generation Alignment Algorithms Conclusion. Background.

manchu
Télécharger la présentation

Next Generation Sequencing, Assembly, and Alignment Methods

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. Next Generation Sequencing, Assembly, and Alignment Methods Andy Nagar

  2. Agenda • Background • Next Generation Sequencing • Sequence Assembly • Sequence Alignment • Traditional Alignment Algorithms • Next Generation Alignment Algorithms • Conclusion Andy Nagar

  3. Background • Earlier sequencing methods were based on Sanger sequencing, which goes back to the 1970s. • Sequencing was slow, bases were read one at a time. • Separation is done byelectrophoresis. • Readout by fluorescent tags. Andy Nagar • Source:[Wikipedia]

  4. Background • To complete second generation genome projects such as the Human Genome Project, need for faster and high-throughput sequencing. • Next-Generation Sequencing technologies based on various implementations of cyclic array sequencing. • Cyclic Array Sequencing is based on the idea of sequencing of an array of DNA features by continuous process of enzymatic separation and imaging-based data collection. Andy Nagar

  5. Growth in Sequencing Growth of Next - GenSequencing – doubles every month Andy Nagar • Source:[6]

  6. Next Generation Sequencing • DNA is fragmented • Adaptors ligated to fragments • Several possible protocols yield array of PCR colonies. • Enyzmatic extension with fluorescently tagged nucleotides. • Cyclic readout by imaging the array. • Workflow : Andy Nagar • Source:[10]

  7. Next Generation Sequencing • Reads are done in parallel to speed up the sequencing. Andy Nagar • Source:[11]

  8. NGS - Products • Products based on cyclic array sequencing include: • Roche’s 454 • Illumina’s Genome Analyzer • ABI’s SOLiD • HeliScope • They allow the sequencing of millions of short sequences (reads) simultaneously, and can sequence entire human genome in a few days [Magi et al 2010]. Andy Nagar

  9. NGS - Products Andy Nagar • Source:[13]

  10. Comparison of existing methods Andy Nagar • Source:[4]

  11. Whole Genome Shotgun Sequences (WGS) • DNA is broken up randomly into numerous small segments. • Multiple overlapping reads for the target DNA are obtained by performing several rounds of this fragmentation and sequencing. • Computer programs then use the overlapping ends of different reads to assemble them into a continuous sequence. Andy Nagar

  12. Sequencing Andy Nagar • Source:[9]

  13. How to ensure enough coverage Andy Nagar • Source:[9]

  14. Whole Genome Shotgun Sequences (WGS) Andy Nagar Source: http://www.nature.com/scitable/topicpage/complex-genomes-shotgun-sequencing-609

  15. Assembly - Reconstructing the Genome • 2 possible methods of assembly: • Consensus Overlap Assembly: The overlap consensus assembly method uses the overlap between sequence reads to create a link between them. The contig is eventually formed by reading along the links as far as possible. Problematic for short reads: - Overlaps must be calculated over a large proportion of the read - Huge number of reads increases the number of links, so contig path is difficult to compute. Andy Nagar

  16. Assembly - Reconstructing the Genome • 2 possible methods of assembly: • de Bruijn Graph Approach: • All k-mers are computed and the reads are represented as a path through the k-mers. - A de Bruijn graph is a graph in which the nodes are sets of symbols (i.e. nucleotides) and the edges represent overlaps between the symbols. This is a convenient way to represent data, such as overlapping sequence reads - de Bruijn graphs handle redundancy better and can assemble sequences more efficiently. Andy Nagar

  17. Assembly - Reconstructing the Genome Andy Nagar • Source:[13]

  18. Assembly - Reconstructing the Genome Andy Nagar • Source:[12]

  19. Assembly –de Bruijn Graph • Reads are parsed into 4-mers • Matches are found and de Bruijn Graph is created • There can be more than one path in the graph.=> Practical problems of assembly. Andy Nagar • Source:[12]

  20. What can we do about repeats? Two main approaches: • Cluster the reads • Link the reads Andy Nagar • Source:[9]

  21. What can we do about repeats? Two main approaches: • Cluster the reads • Link the reads Andy Nagar • Source:[9]

  22. What can we do about repeats? Two main approaches: • Cluster the reads • Link the reads Andy Nagar • Source:[9]

  23. Traditional Sequence Alignment • 2 types of traditional Sequence Alignment Algorithms: 1. Hash-table basedeg: BLAST (and its variants)=> keep track of each k-mer in a hash table with sequence being the key [14][15].SSAHA => builds a position sensitive hash-table [17]. Advantage: Fast search, allows gapped searches. Drawback: Large memory requirement to store the hash table. Andy Nagar

  24. Traditional Sequence Alignment 2. Tree-based search eg: Suffix and Prefix tries Advantage: Fast search, can easily search for sub-strings or patterns. Drawback: Inserting new sequences required re-building the tree. Andy Nagar

  25. Traditional Sequence Alignment – Suffix Tree Suffix tree for the string BANANA. Each substring is terminated with special character $. The six paths from the root to a leaf (shown as boxes) correspond to the six suffixes A$, NA$, ANA$, NANA$, ANANA$ and BANANA$.The numbers in the leaves give the start position of the corresponding suffix. Suffix links drawn dashed. Represents “NA” Represents “ANA” NA is suffix of ANA so suffix link Andy Nagar • Source:[19]

  26. Next Generation Sequence Alignment • With high throughput sequencing, millions of reads are obtained in a single run. • “Read-mapping” problem:How do the reads fit in the reference genome.Find hits where these reads occur in the genome.Report position(s) and frequency of hits.A short read may map to many chromosomes in a genome. Andy Nagar

  27. Next Generation Sequence Alignment Andy Nagar • Source:[25]

  28. Next Generation Sequence Alignment • Burrows-Wheeler Transform can be used to find matches of a query string inside a reference string. Steps: 1. Create a suffix array in which each element is a cyclic permutation of the original string terminated by end character “$”.Example: String “googol”.Original String: googol$ 1st circular permutation=> oogol$g2nd circular permutation => ogol$go…till $ moves to front of the stringlast circular permutation => $googol Andy Nagar • Source:[27]

  29. Next Generation Sequence Alignment Steps: 2. Sort the elements of the suffix array in a lexicographic order. $ is lexicographically the smallest element S(i) represents the index in suffix arrayi represents index in BW Array Note: All occurrences of any substringoccur next to each other in the BWArray.Such range is called the Suffix Array Interval (SA Interval). For example “go” occurs as prefixin positions 1 and 2.SA Interval of “go” = [1,2] BW Array Andy Nagar • Source:[27]

  30. Next Generation Sequence Alignment BW Array Steps: SA Interval of “go” = [1,2]Value of S(i) give the correspondingpositions in original string. Here the S(i) values and 3 and 0. X = googol$ This algorithm has many extensions for finding inexact and gapped matches. More details in reference [27] Andy Nagar • Source:[27]

  31. Conclusion • Next Generation Sequencing is transforming the fields of genetics, molecular biology and bioinformatics. • Enormous amounts of data produced by sequencing projects. • Computing and data analysis are lagging behind. • Need for more efficient data analysis and storage methods. • Use of data mining to find useful information fast and without need to store the entire data. Andy Nagar

  32. Conclusion • More efficient assembly and alignment techniques needed. • Need for “metagenomic” analysis – find out which organisms or species are present in a biological or environmental sample. Andy Nagar

  33. References Andy Nagar

  34. References Andy Nagar

  35. References Andy Nagar

More Related