Mapping of Next Generation Sequencing Data

Size: px
Start display at page:

Download "Mapping of Next Generation Sequencing Data"

Transcription

1 Mapping of Next Generation Sequencing Data Agnes Hotz-Wagenblatt Bioinformatik (HUSAR)

2 Next Generation Sequencers Next (or 3 rd ) generation sequencers came onto the scene in the early 2000 s General characteristics include: Amplification of genetic material by PCR Ligation of amplified material to a solid surface Sequence of the target genetic material is determined using Sequenceby-Synthesis (using labelled nucleotides or pyrosequencing for detection) or Sequence by ligation Sequencing done in a massively parallel fashion and sequence information is captured by a computer

3

4 Sanger sequencing DNA is fragmented Cloned to a plasmid vector Cyclic sequencing reaction Separation by electrophoresis Readout with fluorescent tags

5 Cyclic-array methods 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.

6 Emulsion PCR Fragments, with adaptors, are PCR amplified within a water drop in oil. One primer is attached to the surface of a bead. Used by 454, Polonator and SOLiD.

7 Bridge PCR DNA fragments are flanked with adaptors. A flat surface coated with two types of primers, corresponding to the adaptors. Amplification proceeds in cycles, with one end of each bridge tethered to the surface. Used by Solexa.

8 Comparison of existing methods

9 Read length and pairing ACTTAAGGCTGACTAGC TCGTACCGATATGCTG Short reads are problematic, because short sequences do not map uniquely to the genome. Solution #1: Get longer reads. Solution #2: Get paired reads.

10 Third generation Nanopore sequencing Nucleic acids driven through a nanopore. Differences in conductance of pore provide readout. Real-time monitoring of PCR activity Read-out by fluorescence resonance energy transfer between polymerase and nucleotides or Waveguides allow direct observation of polymerase and fluorescently labeled nucleotides

11 Analysis tasks Base calling / polymorphism detection Mapping to a reference genome De novo or assisted genome assembly

12 Next Gen. Sequencers Cont. Sequencing platform ABI3730xl Genome Analyzer Roche (454) FLX Illumina Genome Analyzer ABI SOLiD HeliScope Sequencing chemistry Automated Sanger sequencing Pyrosequencing on solid support Sequencing-bysynthesis with reversible terminators Sequencing by ligation Sequencing-bysynthesis with virtual terminators Template amplification method In vivo amplification via cloning Emulsion PCR Bridge PCR Emulsion PCR None (single molecule) Read length bp bp bp 35 bp bp Sequencing throughput Mb/h 13 Mb/h 25 Mb/h Mb/h 83 Mb/h

13 Usage of Sequencing Resequencing Map reads back to genome Call bases RNA-seq Map reads back to genome Count tags to determine gene expression levels Chip Seq Map reads back to genome Peaks determine binding sites. Nearly all experiments have the same first step!

14 Bioinformatics Because of the massively parallel nature of next gen sequencers, huge amounts of data are produced quickly requiring terabytes of storage New bioinformatics tools were developed to utilize the huge number of much shorter reads (~35bp vs ~800bp) Bowtie - Ultrafast, memory-efficient short read aligner SOAPdenovo - Part of the SOAP suite, used to build reference genome TopHat - TopHat is a fast splice junction mapper for RNA-Seq reads

15 Mapping Methods Hash table (Lookup table) - fast, but requires perfect matches Array Scanning - can handle mismatches, but not gaps Dynamic Programming eq Smith-Waterman - Indels, mathematically optimal, slow - most programs use hash mapping as prefilter Burrows-Wheeler Transform - fast and memory efficient, but less suited for - gaps and mismatches

16 Programs Hash Tables: Eland, SOAP, SeqMap, MAQ, RMAP, ZOOM, Novoalign BW transform, FM index: Bowtie, BWA, SOAP2, BWA-SW Briefings in Bioinformatics Advance Access published online on May 11, 2010 Heng Li and Nils Homer A survey of sequence alignment algorithms for next-generation sequencing

17 Hash table A hash table is a data structure that stores things and allows insertions, lookups, and deletions to be performed in O(1) time. An algorithm converts an object, typically a string, to a number. Then the number is compressed according to the size of the table and used as an index. There is the possibility of distinct items being mapped to the same key. This is called a collision and must be resolved.

18 Key Hash Code Generator Number Compression Index Smith Bob Smith 123 Main St. Orlando, FL bob@myisp.com

19 First Hash Table Lookup Blast was the first program using this algorithm Kmer (11mer by default) seed from the query searched in All database sequences, keeps result in hash tables.

20 Hash table algorithm Each tool builds a hash table of short oligomers present in - either the reads (SHRiMP, Maq, RMAP, and ZOOM) -or the reference (SOAP). ZOOM uses 'spaced seeds' to significantly outperform RMAP, Algorithm Yaetes and Perleberg. Spaced seeds have been shown to yield higher sensitivity than contiguous seeds of the same length. SHRiMP employs a combination of spaced seeds and the Smith-Waterman algorithm to align reads at expense of speed. Eland is a commercial alignment program available from Illumina that uses a hash-based algorithm with spaced seeds to align reads.

21 Spaced seeds A template requiring 11 matches at the 1 positions is 55% more sensitive than BLAST s default template for two sequences of 70% similarity. A seed allowing internal mismatches is called spaced seed; the number of matches in the seed is its weight. Eland was the first program that utilized spaced seed in short-read alignment. It uses six seed templates spanning the entire short read such that a two-mismatch hit is guaranteed to be identified by at least one of the templates, SOAP adopts almost the same strategy except that it indexes the genome rather than reads. SeqMap and MAQ extends the method to allow k-mismatches,

22 Borrows Wheeler Transform identifying exact matches and building inexact alignments supported by exact matches. First step by: suffix tree, enhanced suffix array or FM-index. The design of the FM-index is based upon the relationship between the Burrows-Wheeler compression algorithm and the suffix array data structure. The advantage of using a trie is that alignment to multiple identical copies of a substring in the reference is only needed to be done once. Used by Bowtie: Langmead et al. Genome Biology :R25 doi: /gb r25

23 What is a suffix tree? S = M A L A Y A L A M $ A LA M YALAM$ $ $M YALAM$ AL $M YALAM$ $M YALAM$ ALAYALAM$ $

24 Finding a (short) Pattern in a (long) String Build a suffix tree of the string. Starting from the root, traverse a path matching characters of the pattern. If stuck, pattern not present in string. Otherwise, each leaf below gives a position of the pattern in the string.

25 Finding a Pattern in a String Find ALA $ A YALAM$ LA M 5 10 $ AL M$ ALAYALAM$ YALAM$ YALAM$ M$ YALAM$ M$ Two matches - at 6 and 2

26 Suffix Array Suffixe of abracadabra (11): abracadabra bracadabra racadabra etc. Order lexicographically: a abra abracadabra acadabra adabra bra bracadabra cadabra dabra ra racadabra The suffix array is a array of indices starting with 1 or 0 in lexicographical order. For the string "abracadabra" the suffix array is {11,8,1,4,6,9,2,5,7,10,3}, because suffix "a" starts at the 11th letter, "abra" starts at the 8th letter, etc.

27 mississippi# ississippi#m ssissippi#mi sissippi#mis issippi#miss ssippi#missi sippi#missis ippi#mississ ppi#mississi pi#mississip i#mississipp #mississippi Every column is a permutation of T. Given row i, char L[i] precedes F[i] in original T. Sort the rows Consecutive char s in L are adjacent to similar strings in T. Therefore L usually contains long runs of identical char s. F L # mississipp i I #mississip p I ppi#missis s I ssippi#mis s I ssissippi# m M ississippi # P i#mississi p P pi#mississ i S ippi#missi s S issippi#mi s S sippi#miss i S sissippi#m i

28 Reminder: Recovering T from L 1. Find F by sorting L 2. First char of T? m 3. Find m in L 4. L[i] precedes F[i] in T. Therefore we get mi 5. How do we choose the correct i in L? The i s are in the same order in L and F As are the rest of the char s 6. i is followed by s: mis 7. And so on. F L

29 Replace each char in L with the number of distinct char s seen since its last occurrence. Keep MTF[1,, Σ ] array, sorted lexicographically. Runs of identical char s are transformed into runs of zeroes in L(MTF) MTF L L i p s s m # p i s s i i # i m p s i # m p s p i Bad # example m s And so on 0 1For 2larger 3 texts 4 we will receive more runs of zeroes, and dominancy of smaller numbers. s p i # m 0 1The 2reason 3 being 4 that BWT creates clusters of similar char s.

30 Burrows-Wheeler transform. (a) The Burrows-Wheeler matrix and transformation for 'acaacg'. (b) Steps taken by EXACTMATCH to identify the range of rows, and thus the set of reference suffixes, prefixed by 'aac'. (c) UNPERMUTE repeatedly applies the last first (LF) mapping to recover the original text (in red on the top line) from the Burrows-Wheeler transform (in black in the rightmost column).

31 Data structures based on a prefix tree String: AGGAGC Li, H. et al. Brief Bioinform :bbq015v1-15; doi: /bib/bbq015 (A) Prefix trie of string AGGAGC where symbol ^ marks the start of the string. The two numbers in each node give the suffix array interval of the substring represented by the node, which is the string concatenation of edge symbols from the node to the root. (B) Compressed prefix trie by contracting nodes with in- and out-degree both being one. (C) Prefix tree by representing the substring on each edge as the interval on the original string. (D) Prefix directed word graph (prefix DAWG) created by collapsing nodes of the prefix trie with identical suffix array interval. (E) Constructing the suffix array and Burrows Wheeler transform of AGGAGC. Copyright restrictions may apply.

32 Exact matching versus inexact alignment. Illustration of how EXACTMATCH (top) and Bowtie's aligner (bottom) proceed when there is no exact match for query 'ggta' but there is a one-mismatch alignment when 'a' is replaced by 'g'.

33 Role of paired-end and mate-pair mapping Some sequencing technologies produce read pairs such that the two reads are known to be close to each other in physical chromosomal distance. These reads are called paired-end or mate-pair reads. - With this mate-pair information, a repetitive read will be reliably placed if its mate can be placed unambiguously. - Alignment errors may be detected and fixed when wrong alignments break the mate-pair requirement

34 Effect of paired end alignment

35 Effect of quality values

36 Aligning bisulfite-treated reads Bisulfite sequencing is a technology to identify methylation patterns - Cytosines with underlines are not methylated. - Denaturation and bisulfite treatment will convert these cytosines to uracils. - After amplification, four different sequences from the original double-strand DNA result.

37 Aligning bisulfite reads 1) Increased search space due to the cytosine-thymine conversion in the bisulfite treatment. 2) Mapping asymmetry: thymines in bisulfite reads can be aligned with cytosines in the reference (illustrated in blue) but not the reverse. Xi and Li BMC Bioinformatics :232 doi: /

38 Aligning bisufite treated reads -two reference sequences: one with all C bases converted to T bases (the C-to-T reference) the other with all G bases converted to A bases (the G-to-A reference). -alignment: C bases are converted to T base for reads and are mapped to the C-to-T reference (then a C T mismatch is effectively regarded as a match); a similar procedure is performed for the G-to-A conversion in the next round of alignment. -The results from two rounds of alignment are combined to generate the final report. If there are no mutations or sequencing errors, a bisulfite treated read can always be mapped exactly in one of the two rounds.

39 Aligning spliced reads RNA-seq produces reads from transcribed sequences with introns and intergenetic regions excluded. When RNA-seq reads are aligned against the genomic sequence, a read may be mapped to a splicing junction. This will fail with a standard alignment algorithm. -> Special alignment e.g. TopHat

40 TOPHAT Pipeline Trapnell, C. et al. Bioinformatics : ; doi: /bioinformatics/btp120 Copyright restrictions may apply.

41 Eukaryotic genes (exons & introns) Splicing Translation

42 Alternative splicing: One gene, several proteins! Alternative Splicing Mature splice variant I Mature splice variant II

43 Types of alternative splicing

44 TopHat and Cufflinks - Use next generation sequence Data for alternative splicing

45 Comparison of some mapping programs Table 1: Popular short-read alignment software Program Algorithm SOLiD Long a Gapped PE b Q c Bfast hashing ref. Yes No Yes Yes No Bowtie FM-index Yes No No Yes Yes BWA FM-index Yes d Yes e Yes Yes No MAQ hashing reads Yes No Yes f Yes Yes Mosaik hashing ref. Yes Yes Yes Yes No Novoalign g hashing ref. No No Yes Yes Yes a Work well for Sanger and 454 reads, allowing gaps and clipping. b Paired end mapping. c Make use of base quality in alignment. d BWA trims the primer base and the first color for a color read. e Long-read alignment implemented in the BWA-SW module. f MAQ only does gapped alignment for Illumina paired-end reads. g Free executable for non-profit projects only.

High-Throughput Bioinformatics: Re-sequencing and de novo assembly. Elena Czeizler

High-Throughput Bioinformatics: Re-sequencing and de novo assembly. Elena Czeizler High-Throughput Bioinformatics: Re-sequencing and de novo assembly Elena Czeizler 13.11.2015 Sequencing data Current sequencing technologies produce large amounts of data: short reads The outputted sequences

More information

Next generation sequencing techniques" Toma Tebaldi Centre for Integrative Biology University of Trento

Next generation sequencing techniques Toma Tebaldi Centre for Integrative Biology University of Trento Next generation sequencing techniques" Toma Tebaldi Centre for Integrative Biology University of Trento Mattarello September 28, 2009 Sequencing Fundamental task in modern biology read the information

More information

NEXT GENERATION SEQUENCING. Farhat Habib

NEXT GENERATION SEQUENCING. Farhat Habib NEXT GENERATION SEQUENCING HISTORY HISTORY Sanger Dominant for last ~30 years 1000bp longest read Based on primers so not good for repetitive or SNPs sites HISTORY Sanger Dominant for last ~30 years 1000bp

More information

Illumina (Solexa) Throughput: 4 Tbp in one run (5 days) Cheapest sequencing technology. Mismatch errors dominate. Cost: ~$1000 per human genme

Illumina (Solexa) Throughput: 4 Tbp in one run (5 days) Cheapest sequencing technology. Mismatch errors dominate. Cost: ~$1000 per human genme Illumina (Solexa) Current market leader Based on sequencing by synthesis Current read length 100-150bp Paired-end easy, longer matepairs harder Error ~0.1% Mismatch errors dominate Throughput: 4 Tbp in

More information

Genome 373: Mapping Short Sequence Reads II. Doug Fowler

Genome 373: Mapping Short Sequence Reads II. Doug Fowler Genome 373: Mapping Short Sequence Reads II Doug Fowler The final Will be in this room on June 6 th at 8:30a Will be focused on the second half of the course, but will include material from the first half

More information

Next Generation Sequencing. Tobias Österlund

Next Generation Sequencing. Tobias Österlund Next Generation Sequencing Tobias Österlund tobiaso@chalmers.se NGS part of the course Week 4 Friday 13/2 15.15-17.00 NGS lecture 1: Introduction to NGS, alignment, assembly Week 6 Thursday 26/2 08.00-09.45

More information

Sequence Assembly and Alignment. Jim Noonan Department of Genetics

Sequence Assembly and Alignment. Jim Noonan Department of Genetics Sequence Assembly and Alignment Jim Noonan Department of Genetics james.noonan@yale.edu www.yale.edu/noonanlab The assembly problem >>10 9 sequencing reads 36 bp - 1 kb 3 Gb Outline Basic concepts in genome

More information

Functional Genomics Research Stream. Research Meetings: November 2 & 3, 2009 Next Generation Sequencing

Functional Genomics Research Stream. Research Meetings: November 2 & 3, 2009 Next Generation Sequencing Functional Genomics Research Stream Research Meetings: November 2 & 3, 2009 Next Generation Sequencing Current Issues Research Meetings: Meet with me this Thursday or Friday. (bring laboratory notebook

More information

Chapter 7. DNA Microarrays

Chapter 7. DNA Microarrays Bioinformatics III Structural Bioinformatics and Genome Analysis Chapter 7. DNA Microarrays 7.9 Next Generation Sequencing 454 Sequencing Solexa Illumina Solid TM System Sequencing Process of determining

More information

Phenotype analysis: biological-biochemical analysis. Genotype analysis: molecular and physical analysis

Phenotype analysis: biological-biochemical analysis. Genotype analysis: molecular and physical analysis 1 Genetic Analysis Phenotype analysis: biological-biochemical analysis Behaviour under specific environmental conditions Behaviour of specific genetic configurations Behaviour of progeny in crosses - Genotype

More information

Introduction to Next Generation Sequencing

Introduction to Next Generation Sequencing The Sequencing Revolution Introduction to Next Generation Sequencing Dena Leshkowitz,WIS 1 st BIOmics Workshop High throughput Short Read Sequencing Technologies Highly parallel reactions (millions to

More information

Phenotype analysis: biological-biochemical analysis. Genotype analysis: molecular and physical analysis

Phenotype analysis: biological-biochemical analysis. Genotype analysis: molecular and physical analysis 1 Genetic Analysis Phenotype analysis: biological-biochemical analysis Behaviour under specific environmental conditions Behaviour of specific genetic configurations Behaviour of progeny in crosses - Genotype

More information

Alignment methods. Martijn Vermaat Department of Human Genetics Center for Human and Clinical Genetics

Alignment methods. Martijn Vermaat Department of Human Genetics Center for Human and Clinical Genetics Alignment methods Martijn Vermaat Department of Human Genetics Center for Human and Clinical Genetics Alignment methods Sequence alignment Assembly vs alignment Alignment methods Common issues Platform

More information

Welcome to the NGS webinar series

Welcome to the NGS webinar series Welcome to the NGS webinar series Webinar 1 NGS: Introduction to technology, and applications NGS Technology Webinar 2 Targeted NGS for Cancer Research NGS in cancer Webinar 3 NGS: Data analysis for genetic

More information

Introduction to Short Read Alignment. UCD Genome Center Bioinformatics Core Tuesday 14 June 2016

Introduction to Short Read Alignment. UCD Genome Center Bioinformatics Core Tuesday 14 June 2016 Introduction to Short Read Alignment UCD Genome Center Bioinformatics Core Tuesday 14 June 2016 From reads to molecules Why align? Individual A Individual B ATGATAGCATCGTCGGGTGTCTGCTCAATAATAGTGCCGTATCATGCTGGTGTTATAATCGCCGCATGACATGATCAATGG

More information

Next Gen Sequencing. Expansion of sequencing technology. Contents

Next Gen Sequencing. Expansion of sequencing technology. Contents Next Gen Sequencing Contents 1 Expansion of sequencing technology 2 The Next Generation of Sequencing: High-Throughput Technologies 3 High Throughput Sequencing Applied to Genome Sequencing (TEDed CC BY-NC-ND

More information

Contact us for more information and a quotation

Contact us for more information and a quotation GenePool Information Sheet #1 Installed Sequencing Technologies in the GenePool The GenePool offers sequencing service on three platforms: Sanger (dideoxy) sequencing on ABI 3730 instruments Illumina SOLEXA

More information

Lecture 7. Next-generation sequencing technologies

Lecture 7. Next-generation sequencing technologies Lecture 7 Next-generation sequencing technologies Next-generation sequencing technologies General principles of short-read NGS Construct a library of fragments Generate clonal template populations Massively

More information

Transcriptomics analysis with RNA seq: an overview Frederik Coppens

Transcriptomics analysis with RNA seq: an overview Frederik Coppens Transcriptomics analysis with RNA seq: an overview Frederik Coppens Platforms Applications Analysis Quantification RNA content Platforms Platforms Short (few hundred bases) Long reads (multiple kilobases)

More information

Next Generation Sequencing Technologies. Some slides are modified from Robi Mitra s lecture notes

Next Generation Sequencing Technologies. Some slides are modified from Robi Mitra s lecture notes Next Generation Sequencing Technologies Some slides are modified from Robi Mitra s lecture notes What will you do to understand a disease? What will you do to understand a disease? Genotype Phenotype Hypothesis

More information

The Journey of DNA Sequencing. Chromosomes. What is a genome? Genome size. H. Sunny Sun

The Journey of DNA Sequencing. Chromosomes. What is a genome? Genome size. H. Sunny Sun The Journey of DNA Sequencing H. Sunny Sun What is a genome? Genome is the total genetic complement of a living organism. The nuclear genome comprises approximately 3.2 * 10 9 nucleotides of DNA, divided

More information

Next Generation Sequencing: An Overview

Next Generation Sequencing: An Overview Next Generation Sequencing: An Overview Cavan Reilly November 13, 2017 Table of contents Next generation sequencing NGS and microarrays Study design Quality assessment Burrows Wheeler transform Next generation

More information

Matthew Tinning Australian Genome Research Facility. July 2012

Matthew Tinning Australian Genome Research Facility. July 2012 Next-Generation Sequencing: an overview of technologies and applications Matthew Tinning Australian Genome Research Facility July 2012 History of Sequencing Where have we been? 1869 Discovery of DNA 1909

More information

Genomic DNA ASSEMBLY BY REMAPPING. Course overview

Genomic DNA ASSEMBLY BY REMAPPING. Course overview ASSEMBLY BY REMAPPING Laurent Falquet, The Bioinformatics Unravelling Group, UNIFR & SIB MA/MER @ UniFr Group Leader @ SIB Course overview Genomic DNA PacBio Illumina methylation de novo remapping Annotation

More information

About Strand NGS. Strand Genomics, Inc All rights reserved.

About Strand NGS. Strand Genomics, Inc All rights reserved. About Strand NGS Strand NGS-formerly known as Avadis NGS, is an integrated platform that provides analysis, management and visualization tools for next-generation sequencing data. It supports extensive

More information

Bioinformatics Support of Genome Sequencing Projects. Seminar in biology

Bioinformatics Support of Genome Sequencing Projects. Seminar in biology Bioinformatics Support of Genome Sequencing Projects Seminar in biology Introduction The Big Picture Biology reminder Enzyme for DNA manipulation DNA cloning DNA mapping Sequencing genomes Alignment of

More information

ChIP-seq and RNA-seq

ChIP-seq and RNA-seq ChIP-seq and RNA-seq Biological Goals Learn how genomes encode the diverse patterns of gene expression that define each cell type and state. Protein-DNA interactions (ChIPchromatin immunoprecipitation)

More information

Overview of Next Generation Sequencing technologies. Céline Keime

Overview of Next Generation Sequencing technologies. Céline Keime Overview of Next Generation Sequencing technologies Céline Keime keime@igbmc.fr Next Generation Sequencing < Second generation sequencing < General principle < Sequencing by synthesis - Illumina < Sequencing

More information

Next-Generation Sequencing. Technologies

Next-Generation Sequencing. Technologies Next-Generation Next-Generation Sequencing Technologies Sequencing Technologies Nicholas E. Navin, Ph.D. MD Anderson Cancer Center Dept. Genetics Dept. Bioinformatics Introduction to Bioinformatics GS011062

More information

Next-generation sequencing technologies

Next-generation sequencing technologies Next-generation sequencing technologies NGS applications Illumina sequencing workflow Overview Sequencing by ligation Short-read NGS Sequencing by synthesis Illumina NGS Single-molecule approach Long-read

More information

Gene Expression Technology

Gene Expression Technology Gene Expression Technology Bing Zhang Department of Biomedical Informatics Vanderbilt University bing.zhang@vanderbilt.edu Gene expression Gene expression is the process by which information from a gene

More information

Next Generation Sequencing Lecture Saarbrücken, 19. March Sequencing Platforms

Next Generation Sequencing Lecture Saarbrücken, 19. March Sequencing Platforms Next Generation Sequencing Lecture Saarbrücken, 19. March 2012 Sequencing Platforms Contents Introduction Sequencing Workflow Platforms Roche 454 ABI SOLiD Illumina Genome Anlayzer / HiSeq Problems Quality

More information

Genome 373: High- Throughput DNA Sequencing. Doug Fowler

Genome 373: High- Throughput DNA Sequencing. Doug Fowler Genome 373: High- Throughput DNA Sequencing Doug Fowler Tasks give ML unity We learned about three tasks that are commonly encountered in ML Models/Algorithms Give ML Diversity Classification Regression

More information

ChIP-seq and RNA-seq. Farhat Habib

ChIP-seq and RNA-seq. Farhat Habib ChIP-seq and RNA-seq Farhat Habib fhabib@iiserpune.ac.in Biological Goals Learn how genomes encode the diverse patterns of gene expression that define each cell type and state. Protein-DNA interactions

More information

GNUMap: Unbiased Probabilistic Mapping of Next- Generation Sequencing Reads

GNUMap: Unbiased Probabilistic Mapping of Next- Generation Sequencing Reads : Unbiased Probabilistic Mapping of Next- Generation Sequencing Reads Nathan Clement Computational Sciences Laboratory Brigham Young University Provo, Utah, USA GNUMap Next-Generation Sequencing (Solexa/Illumina)

More information

Basics of RNA-Seq. (With a Focus on Application to Single Cell RNA-Seq) Michael Kelly, PhD Team Lead, NCI Single Cell Analysis Facility

Basics of RNA-Seq. (With a Focus on Application to Single Cell RNA-Seq) Michael Kelly, PhD Team Lead, NCI Single Cell Analysis Facility 2018 ABRF Meeting Satellite Workshop 4 Bridging the Gap: Isolation to Translation (Single Cell RNA-Seq) Sunday, April 22 Basics of RNA-Seq (With a Focus on Application to Single Cell RNA-Seq) Michael Kelly,

More information

CSCI2950-C DNA Sequencing and Fragment Assembly

CSCI2950-C DNA Sequencing and Fragment Assembly CSCI2950-C DNA Sequencing and Fragment Assembly Lecture 2: Sept. 7, 2010 http://cs.brown.edu/courses/csci2950-c/ DNA sequencing How we obtain the sequence of nucleotides of a species 5 3 ACGTGACTGAGGACCGTG

More information

Aaron Liston, Oregon State University Botany 2012 Intro to Next Generation Sequencing Workshop

Aaron Liston, Oregon State University Botany 2012 Intro to Next Generation Sequencing Workshop Output (bp) Aaron Liston, Oregon State University Growth in Next-Gen Sequencing Capacity 3.5E+11 2002 2004 2006 2008 2010 3.0E+11 2.5E+11 2.0E+11 1.5E+11 1.0E+11 Adapted from Mardis, 2011, Nature 5.0E+10

More information

BST 226 Statistical Methods for Bioinformatics David M. Rocke. March 10, 2014 BST 226 Statistical Methods for Bioinformatics 1

BST 226 Statistical Methods for Bioinformatics David M. Rocke. March 10, 2014 BST 226 Statistical Methods for Bioinformatics 1 BST 226 Statistical Methods for Bioinformatics David M. Rocke March 10, 2014 BST 226 Statistical Methods for Bioinformatics 1 NGS Technologies Illumina Sequencing HiSeq 2500 & MiSeq PacBio Sequencing PacBio

More information

1. Introduction Gene regulation Genomics and genome analyses

1. Introduction Gene regulation Genomics and genome analyses 1. Introduction Gene regulation Genomics and genome analyses 2. Gene regulation tools and methods Regulatory sequences and motif discovery TF binding sites Databases 3. Technologies Microarrays Deep sequencing

More information

C3BI. VARIANTS CALLING November Pierre Lechat Stéphane Descorps-Declère

C3BI. VARIANTS CALLING November Pierre Lechat Stéphane Descorps-Declère C3BI VARIANTS CALLING November 2016 Pierre Lechat Stéphane Descorps-Declère General Workflow (GATK) software websites software bwa picard samtools GATK IGV tablet vcftools website http://bio-bwa.sourceforge.net/

More information

Introduction to Bioinformatics and Gene Expression Technologies

Introduction to Bioinformatics and Gene Expression Technologies Introduction to Bioinformatics and Gene Expression Technologies Utah State University Fall 2017 Statistical Bioinformatics (Biomedical Big Data) Notes 1 1 Vocabulary Gene: hereditary DNA sequence at a

More information

Introduction to Bioinformatics and Gene Expression Technologies

Introduction to Bioinformatics and Gene Expression Technologies Vocabulary Introduction to Bioinformatics and Gene Expression Technologies Utah State University Fall 2017 Statistical Bioinformatics (Biomedical Big Data) Notes 1 Gene: Genetics: Genome: Genomics: hereditary

More information

Sequencing technologies

Sequencing technologies Sequencing technologies part of High-Throughput Analyzes of Genome Sequenzes Computational EvoDevo University of Leipzig Leipzig, WS 2014/15 Sanger Sequencing (Chain Termination Method) Sequencing of one

More information

A Crash Course in NGS for GI Pathologists. Sandra O Toole

A Crash Course in NGS for GI Pathologists. Sandra O Toole A Crash Course in NGS for GI Pathologists Sandra O Toole The Sanger Technique First generation sequencing Uses dideoxynucleotides (dideoxyadenine, dideoxyguanine, etc) These are molecules that resemble

More information

10/20/2009 Comp 590/Comp Fall

10/20/2009 Comp 590/Comp Fall Lecture 14: DNA Sequencing Study Chapter 8.9 10/20/2009 Comp 590/Comp 790-90 Fall 2009 1 DNA Sequencing Shear DNA into millions of small fragments Read 500 700 nucleotides at a time from the small fragments

More information

High Throughput Sequencing Technologies. J Fass UCD Genome Center Bioinformatics Core Monday June 16, 2014

High Throughput Sequencing Technologies. J Fass UCD Genome Center Bioinformatics Core Monday June 16, 2014 High Throughput Sequencing Technologies J Fass UCD Genome Center Bioinformatics Core Monday June 16, 2014 Sequencing Explosion www.genome.gov/sequencingcosts http://t.co/ka5cvghdqo Sequencing Explosion

More information

Genetics and Genomics in Medicine Chapter 3. Questions & Answers

Genetics and Genomics in Medicine Chapter 3. Questions & Answers Genetics and Genomics in Medicine Chapter 3 Multiple Choice Questions Questions & Answers Question 3.1 Which of the following statements, if any, is false? a) Amplifying DNA means making many identical

More information

Mapping strategies for sequence reads

Mapping strategies for sequence reads Mapping strategies for sequence reads Ernest Turro University of Cambridge 21 Oct 2013 Quantification A basic aim in genomics is working out the contents of a biological sample. 1. What distinct elements

More information

Transcriptome analysis

Transcriptome analysis Statistical Bioinformatics: Transcriptome analysis Stefan Seemann seemann@rth.dk University of Copenhagen April 11th 2018 Outline: a) How to assess the quality of sequencing reads? b) How to normalize

More information

The Expanded Illumina Sequencing Portfolio New Sample Prep Solutions and Workflow

The Expanded Illumina Sequencing Portfolio New Sample Prep Solutions and Workflow The Expanded Illumina Sequencing Portfolio New Sample Prep Solutions and Workflow Marcus Hausch, Ph.D. 2010 Illumina, Inc. All rights reserved. Illumina, illuminadx, Solexa, Making Sense Out of Life, Oligator,

More information

Application of NGS (next-generation sequencing) for studying RNA regulation

Application of NGS (next-generation sequencing) for studying RNA regulation Application of NGS (next-generation sequencing) for studying RNA regulation SAIHST, SKKU Sung Wook Chi In this lecturre Intro: Sequencing Technology NGS (Next-Generation Sequencing) Sequencing of RNAs

More information

Ultrasequencing: methods and applications of the new generation sequencing platforms

Ultrasequencing: methods and applications of the new generation sequencing platforms Ultrasequencing: methods and applications of the new generation sequencing platforms Nuria Tubío Santamaría Course: Genomics Universitat Autònoma de Barcelona 1 Introduction Clasical methods of sequencing:

More information

Lecture 14: DNA Sequencing

Lecture 14: DNA Sequencing Lecture 14: DNA Sequencing Study Chapter 8.9 10/17/2013 COMP 465 Fall 2013 1 Shear DNA into millions of small fragments Read 500 700 nucleotides at a time from the small fragments (Sanger method) DNA Sequencing

More information

High Throughput Sequencing Technologies. J Fass UCD Genome Center Bioinformatics Core Monday September 15, 2014

High Throughput Sequencing Technologies. J Fass UCD Genome Center Bioinformatics Core Monday September 15, 2014 High Throughput Sequencing Technologies J Fass UCD Genome Center Bioinformatics Core Monday September 15, 2014 Sequencing Explosion www.genome.gov/sequencingcosts http://t.co/ka5cvghdqo Sequencing Explosion

More information

Biol 478/595 Intro to Bioinformatics

Biol 478/595 Intro to Bioinformatics Biol 478/595 Intro to Bioinformatics September M 1 Labor Day 4 W 3 MG Database Searching Ch. 6 5 F 5 MG Database Searching Hw1 6 M 8 MG Scoring Matrices Ch 3 and Ch 4 7 W 10 MG Pairwise Alignment 8 F 12

More information

Analysis of RNA-seq Data

Analysis of RNA-seq Data Analysis of RNA-seq Data A physicist and an engineer are in a hot-air balloon. Soon, they find themselves lost in a canyon somewhere. They yell out for help: "Helllloooooo! Where are we?" 15 minutes later,

More information

PLNT2530 (2018) Unit 6b Sequence Libraries

PLNT2530 (2018) Unit 6b Sequence Libraries PLNT2530 (2018) Unit 6b Sequence Libraries Molecular Biotechnology (Ch 4) Analysis of Genes and Genomes (Ch 5) Unless otherwise cited or referenced, all content of this presenataion is licensed under the

More information

Sequencing technologies. Jose Blanca COMAV institute bioinf.comav.upv.es

Sequencing technologies. Jose Blanca COMAV institute bioinf.comav.upv.es Sequencing technologies Jose Blanca COMAV institute bioinf.comav.upv.es Outline Sequencing technologies: Sanger 2nd generation sequencing: 3er generation sequencing: 454 Illumina SOLiD Ion Torrent PacBio

More information

Restriction Enzymes (endonucleases)

Restriction Enzymes (endonucleases) In order to understand and eventually manipulate DNA (human or otherwise) an array of DNA technologies have been developed. Here are some of the tools: Restriction Enzymes (endonucleases) In order to manipulate

More information

Introduction to RNA-Seq. David Wood Winter School in Mathematics and Computational Biology July 1, 2013

Introduction to RNA-Seq. David Wood Winter School in Mathematics and Computational Biology July 1, 2013 Introduction to RNA-Seq David Wood Winter School in Mathematics and Computational Biology July 1, 2013 Abundance RNA is... Diverse Dynamic Central DNA rrna Epigenetics trna RNA mrna Time Protein Abundance

More information

MANUSCRIPT Pages 1 8. A survey of sequence alignment algorithms for next-generation sequencing

MANUSCRIPT Pages 1 8. A survey of sequence alignment algorithms for next-generation sequencing MANUSCRIPT Pages 1 8 A survey of sequence alignment algorithms for next-generation sequencing Heng Li 1, and Nils Homer 2,3 1 Broad Institute, 5 Cambridge Center, Cambridge, MA 02142, USA. 2 Department

More information

7.1 Techniques for Producing and Analyzing DNA. SBI4U Ms. Ho-Lau

7.1 Techniques for Producing and Analyzing DNA. SBI4U Ms. Ho-Lau 7.1 Techniques for Producing and Analyzing DNA SBI4U Ms. Ho-Lau What is Biotechnology? From Merriam-Webster: the manipulation of living organisms or their components to produce useful usually commercial

More information

Human Genome Sequencing Over the Decades The capacity to sequence all 3.2 billion bases of the human genome (at 30X coverage) has increased

Human Genome Sequencing Over the Decades The capacity to sequence all 3.2 billion bases of the human genome (at 30X coverage) has increased Human Genome Sequencing Over the Decades The capacity to sequence all 3.2 billion bases of the human genome (at 30X coverage) has increased exponentially since the 1990s. In 2005, with the introduction

More information

Challenging algorithms in bioinformatics

Challenging algorithms in bioinformatics Challenging algorithms in bioinformatics 11 October 2018 Torbjørn Rognes Department of Informatics, UiO torognes@ifi.uio.no What is bioinformatics? Definition: Bioinformatics is the development and use

More information

MODULE 1: INTRODUCTION TO THE GENOME BROWSER: WHAT IS A GENE?

MODULE 1: INTRODUCTION TO THE GENOME BROWSER: WHAT IS A GENE? MODULE 1: INTRODUCTION TO THE GENOME BROWSER: WHAT IS A GENE? Lesson Plan: Title Introduction to the Genome Browser: what is a gene? JOYCE STAMM Objectives Demonstrate basic skills in using the UCSC Genome

More information

High throughput DNA Sequencing. An Equal Opportunity University!

High throughput DNA Sequencing. An Equal Opportunity University! High throughput DNA Sequencing An Equal Opportunity University! irst Generation DNA sequencing utilize chain terminator technologies (adaptation of Sanger sequencing) Adapt fluorescence chemistry, high-resolution

More information

DNA-Sequencing. Technologies & Devices

DNA-Sequencing. Technologies & Devices DNA-Sequencing Technologies & Devices Genome analysis DNA sequencing platforms ABI 3730xl 4/2004 & 6/2006 1 Mb/day, 850 nt reads 2 Mb/day, 550 nt reads Roche/454 GS FLX 12/2006 800 Mb/23h, 800 nt reads

More information

DNA-Sequencing. Technologies & Devices

DNA-Sequencing. Technologies & Devices DNA-Sequencing Technologies & Devices Genome analysis DNA sequencing platforms ABI 3730xl 4/2004 & 6/2006 1 Mb/day, 850 nt reads 2 Mb/day, 550 nt reads Roche/454 GS FLX 12/2006 800 Mb/23h, 800 nt reads

More information

Sequence assembly. Jose Blanca COMAV institute bioinf.comav.upv.es

Sequence assembly. Jose Blanca COMAV institute bioinf.comav.upv.es Sequence assembly Jose Blanca COMAV institute bioinf.comav.upv.es Sequencing project Unknown sequence { experimental evidence result read 1 read 4 read 2 read 5 read 3 read 6 read 7 Computational requirements

More information

RNA-sequencing. Next Generation sequencing analysis Anne-Mette Bjerregaard. Center for biological sequence analysis (CBS)

RNA-sequencing. Next Generation sequencing analysis Anne-Mette Bjerregaard. Center for biological sequence analysis (CBS) RNA-sequencing Next Generation sequencing analysis 2016 Anne-Mette Bjerregaard Center for biological sequence analysis (CBS) Terms and definitions TRANSCRIPTOME The full set of RNA transcripts and their

More information

Deep Sequencing technologies

Deep Sequencing technologies Deep Sequencing technologies Gabriela Salinas 30 October 2017 Transcriptome and Genome Analysis Laboratory http://www.uni-bc.gwdg.de/index.php?id=709 Microarray and Deep-Sequencing Core Facility University

More information

Biology. Biology. Slide 1 of 39. End Show. Copyright Pearson Prentice Hall

Biology. Biology. Slide 1 of 39. End Show. Copyright Pearson Prentice Hall Biology Biology 1 of 39 12-3 RNA and Protein Synthesis 2 of 39 Essential Question What is transcription and translation and how do they take place? 3 of 39 12 3 RNA and Protein Synthesis Genes are coded

More information

Biology. Biology. Slide 1 of 39. End Show. Copyright Pearson Prentice Hall

Biology. Biology. Slide 1 of 39. End Show. Copyright Pearson Prentice Hall Biology Biology 1 of 39 12-3 RNA and Protein Synthesis 2 of 39 12 3 RNA and Protein Synthesis Genes are coded DNA instructions that control the production of proteins. Genetic messages can be decoded by

More information

BST227 Introduction to Statistical Genetics. Lecture 8: Variant calling from high-throughput sequencing data

BST227 Introduction to Statistical Genetics. Lecture 8: Variant calling from high-throughput sequencing data BST227 Introduction to Statistical Genetics Lecture 8: Variant calling from high-throughput sequencing data 1 PC recap typical genome Differs from the reference genome at 4-5 million sites ~85% SNPs ~15%

More information

1

1 1 2 3 4 5 Cosmids are plasmid vectors that contain cos sites. The cos site is the only requirement for DNA to be packaged into a phage particle 6 7 8 9 10 11 12 13 14 15 16 For de novo sequencing using

More information

you can see that if if you look into the you know the capability kilobases per day, per machine kind of calculation if you do.

you can see that if if you look into the you know the capability kilobases per day, per machine kind of calculation if you do. Functional Genomics Professor S Ganesh Department of Biological Sciences & Bioengineering Indian Institute of Technology Kanpur Lecture No 11 DNA Sequencing Methods Part 2 So welcome back to this course

More information

CSE182-L16. LW statistics/assembly

CSE182-L16. LW statistics/assembly CSE182-L16 LW statistics/assembly Silly Quiz Who are these people, and what is the occasion? Genome Sequencing and Assembly Sequencing A break at T is shown here. Measuring the lengths using electrophoresis

More information

Eucalyptus gene assembly

Eucalyptus gene assembly Eucalyptus gene assembly ACGT Plant Biotechnology meeting Charles Hefer Bioinformatics and Computational Biology Unit University of Pretoria October 2011 About Eucalyptus Most valuable and widely planted

More information

Human genome sequence

Human genome sequence NGS: the basics Human genome sequence June 26th 2000: official announcement of the completion of the draft of the human genome sequence (truly finished in 2004) Francis Collins Craig Venter HGP: 3 billion

More information

Genome Sequencing. I: Methods. MMG 835, SPRING 2016 Eukaryotic Molecular Genetics. George I. Mias

Genome Sequencing. I: Methods. MMG 835, SPRING 2016 Eukaryotic Molecular Genetics. George I. Mias Genome Sequencing I: Methods MMG 835, SPRING 2016 Eukaryotic Molecular Genetics George I. Mias Department of Biochemistry and Molecular Biology gmias@msu.edu Sequencing Methods Cost of Sequencing Wetterstrand

More information

Mapping Next Generation Sequence Reads. Bingbing Yuan Dec. 2, 2010

Mapping Next Generation Sequence Reads. Bingbing Yuan Dec. 2, 2010 Mapping Next Generation Sequence Reads Bingbing Yuan Dec. 2, 2010 1 What happen if reads are not mapped properly? Some data won t be used, thus fewer reads would be aligned. Reads are mapped to the wrong

More information

Reading Lecture 8: Lecture 9: Lecture 8. DNA Libraries. Definition Types Construction

Reading Lecture 8: Lecture 9: Lecture 8. DNA Libraries. Definition Types Construction Lecture 8 Reading Lecture 8: 96-110 Lecture 9: 111-120 DNA Libraries Definition Types Construction 142 DNA Libraries A DNA library is a collection of clones of genomic fragments or cdnas from a certain

More information

Chapter 8: Recombinant DNA. Ways this technology touches us. Overview. Genetic Engineering

Chapter 8: Recombinant DNA. Ways this technology touches us. Overview. Genetic Engineering Chapter 8 Recombinant DNA and Genetic Engineering Genetic manipulation Ways this technology touches us Criminal justice The Justice Project, started by law students to advocate for DNA testing of Death

More information

Next Generation Sequencing. Jeroen Van Houdt - Leuven 13/10/2017

Next Generation Sequencing. Jeroen Van Houdt - Leuven 13/10/2017 Next Generation Sequencing Jeroen Van Houdt - Leuven 13/10/2017 Landmarks in DNA sequencing 1953 Discovery of DNA double helix structure 1977 A Maxam and W Gilbert "DNA seq by chemical degradation" F Sanger"DNA

More information

CSC Assignment1SequencingReview- 1109_Su N_NEXT_GENERATION_SEQUENCING.docx By Anonymous. Similarity Index

CSC Assignment1SequencingReview- 1109_Su N_NEXT_GENERATION_SEQUENCING.docx By Anonymous. Similarity Index Page 1 of 6 Document Viewer TurnitinUK Originality Report Processed on: 05-Dec-20 10:49 AM GMT ID: 13 Word Count: 1587 Submitted: 1 CSC8313-201 - Assignment1SequencingReview- 1109_Su N_NEXT_GENERATION_SEQUENCING.docx

More information

The study of the structure, function, and interaction of cellular proteins is called. A) bioinformatics B) haplotypics C) genomics D) proteomics

The study of the structure, function, and interaction of cellular proteins is called. A) bioinformatics B) haplotypics C) genomics D) proteomics Human Biology, 12e (Mader / Windelspecht) Chapter 21 DNA Which of the following is not a component of a DNA molecule? A) a nitrogen-containing base B) deoxyribose sugar C) phosphate D) phospholipid Messenger

More information

The New Genome Analyzer IIx Delivering more data, faster, and easier than ever before. Jeremy Preston, PhD Marketing Manager, Sequencing

The New Genome Analyzer IIx Delivering more data, faster, and easier than ever before. Jeremy Preston, PhD Marketing Manager, Sequencing The New Genome Analyzer IIx Delivering more data, faster, and easier than ever before Jeremy Preston, PhD Marketing Manager, Sequencing Illumina Genome Analyzer: a Paradigm Shift 2000x gain in efficiency

More information

Variation detection based on second generation sequencing data. Xin LIU Department of Science and Technology, BGI

Variation detection based on second generation sequencing data. Xin LIU Department of Science and Technology, BGI Variation detection based on second generation sequencing data Xin LIU Department of Science and Technology, BGI liuxin@genomics.org.cn 2013.11.21 Outline Summary of sequencing techniques Data quality

More information

Admission Exam for the Graduate Course in Bioinformatics. November 17 th, 2017 NAME:

Admission Exam for the Graduate Course in Bioinformatics. November 17 th, 2017 NAME: 1 Admission Exam for the Graduate Course in Bioinformatics November 17 th, 2017 NAME: This exam contains 30 (thirty) questions divided in 3 (three) areas (maths/statistics, computer science, biological

More information

RNA Sequencing. Next gen insight into transcriptomes , Elio Schijlen

RNA Sequencing. Next gen insight into transcriptomes , Elio Schijlen RNA Sequencing Next gen insight into transcriptomes 05-06-2013, Elio Schijlen Transcriptome complete set of transcripts in a cell, and their quantity, for a specific developmental stage or physiological

More information

Parts of a standard FastQC report

Parts of a standard FastQC report FastQC FastQC, written by Simon Andrews of Babraham Bioinformatics, is a very popular tool used to provide an overview of basic quality control metrics for raw next generation sequencing data. There are

More information

DNA polymorphisms and RNA-Seq alternative splicing blow bubbles in de Bruijn Graphs

DNA polymorphisms and RNA-Seq alternative splicing blow bubbles in de Bruijn Graphs DNA polymorphisms and RNA-Seq alternative splicing blow bubbles in de Bruijn Graphs Nadia Pisanti University of Pisa & Leiden University Outline New Generation Sequencing (NGS), and the importance of detecting

More information

Short Read Alignment to a Reference Genome

Short Read Alignment to a Reference Genome Short Read Alignment to a Reference Genome Shamith Samarajiwa CRUK Summer School in Bioinformatics Cambridge, September 2018 Aligning to a reference genome BWA Bowtie2 STAR GEM Pseudo Aligners for RNA-seq

More information

DNA-Sequencing. Technologies & Devices. Matthias Platzer. Genome Analysis Leibniz Institute on Aging - Fritz Lipmann Institute (FLI)

DNA-Sequencing. Technologies & Devices. Matthias Platzer. Genome Analysis Leibniz Institute on Aging - Fritz Lipmann Institute (FLI) DNA-Sequencing Technologies & Devices Matthias Platzer Genome Analysis Leibniz Institute on Aging - Fritz Lipmann Institute (FLI) Genome analysis DNA sequencing platforms ABI 3730xl 4/2004 & 6/2006 1 Mb/day,

More information

Unit 1: DNA and the Genome. Sub-Topic (1.3) Gene Expression

Unit 1: DNA and the Genome. Sub-Topic (1.3) Gene Expression Unit 1: DNA and the Genome Sub-Topic (1.3) Gene Expression Unit 1: DNA and the Genome Sub-Topic (1.3) Gene Expression On completion of this subtopic I will be able to State the meanings of the terms genotype,

More information

Factors affecting PCR

Factors affecting PCR Lec. 11 Dr. Ahmed K. Ali Factors affecting PCR The sequences of the primers are critical to the success of the experiment, as are the precise temperatures used in the heating and cooling stages of the

More information

V8 Genomics data. Processing of Biological Data

V8 Genomics data. Processing of Biological Data Genomics data Program for today: - Read mapping - SNP calling - SNP frequencies in 1000 Genomes data - Isoforms of genes (alternative splicing) - Non-canonical translation - Removing sequence redundancy

More information

Disclosing the nature of computational tools for the analysis of Next Generation Sequencing data.

Disclosing the nature of computational tools for the analysis of Next Generation Sequencing data. Disclosing the nature of computational tools for the analysis of Next Generation Sequencing data. Francesca Cordero 1,2, Marco Beccuti 1, Susanna Donatelli 1 and Raffaele A Calogero 2 (1) Department of

More information

Opportunities offered by new sequencing technologies

Opportunities offered by new sequencing technologies Opportunities offered by new sequencing technologies Pierre Taberlet Laboratoire d'ecologie Alpine CNRS UMR 5553 Université Joseph Fourier, Grenoble, France Nature Biotechnology, October 2008: special

More information