gnumap: unbiased probabilistic mapping of next- generation...

17
GNUMap GNUMap: Unbiased Probabilistic Mapping of Next- Generation Sequencing Reads Nathan Clement Computational Sciences Laboratory Brigham Young University Provo, Utah, USA

Upload: others

Post on 15-Jul-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUMap

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

Page 2: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

apNext-Generation Sequencing

(Solexa/Illumina)

Page 3: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Problem Statement • Map next-generation sequence reads with

variable nucleotide confidence to a model reference genome that may be different from the subject genome. ▫  Speed   Tens of millions of reads to a 3Gbp genome ▫  Accuracy   Mismatches included?   Repetitive regions ▫  Visualization

Page 4: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Workflow

Solexa Readk-mer

l

Reference Genome lk-mer k-mer k-mer

Solexa Read

k

GenomeHash Table

k

k

Probabilistic Needleman-

Wunsch

Alignment Score

Page 5: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Indexing the genome •  Fast lookup of possible hit locations for the

reads ▫  Hashing groups locations in the genome that

have similar sequence content   k-mer hash of exact matches in genome can be

used to narrow down possible match locations for reads

▫  Sorting genome locations provides for content addressing of genome

• GNUMAP uses indexing of all 10-mers in the genome as seed points for read mapping

Page 6: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Building the Hash Table

ACTGAACCATACGGGTACTGAACCATGAATGGCACCTATACGAGATACGCCATAC

Hash Table

AACCAT AACCAT

Sliding window indexes all locations in the genome

Page 7: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Alignment •  Given a possible genome match location,

determine the quality of the match •  If you call bases in the read ▫  Every base gets the same weight in the

alignment, no matter what the quality ▫  Later bases in the read that have lower quality

have equal weight in the alignment with high quality bases at the start of the read

•  GNUMap uses a Probabilistic Needleman-Wunsch to align reads found with seed points from the genome hash

Page 8: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Probabilistic Needleman Wunsch

•  Uses PWM in calculation of alignment score •  Allows for probabilistic mismatches and gaps •  Greater ability to map reads of variable confidence

j 0 1 2 3 4 5

PWM A 0.059 0.000 0.172 0.271 0.300C 0.108 0.320 0.136 0.209 0.330G 0.305 0.317 0.317 0.164 0.045T 0.526 0.578 0.375 0.356 0.325

NW T T T T C0 -2 -4 -6 -8 -10

T -2 0.052 -1.948 -3.948 -5.948 -7.948T -4 -1.844 0.208 -1.792 -3.792 -5.792C -6 -3.844 -1.792 -0.520 -2.448 -4.448A -8 -5.844 -3.792 -2.374 -0.978 -2.978C -10 -7.844 -5.792 -4.131 -2.774 -1.318

1

Page 9: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Assignment •  Given a read that has matches to possibly multiple

locations in the genome, assign the read to locations where it matches ▫  Repeat Masking– Discard reads that match to repeat

regions.   Half of the human genome contains repeat regions, so

you are not able to map to those regions   Many regulatory regions are repeated in the genome

▫  Map to all locations – Repeat regions will be over-represented since one read will generate multiple hits ▫  Pick a random location – Biased if there are small

numbers of reads •  GNUMap uses probabilistic mapping to allocate a

share of the read to matching locations in the genome according to the quality of the match

Page 10: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Equation for probabilistic mapping

• Allows for multiple sequences of different matching quality.

•  Includes probability of each read coming from any genomic position.

GM j=

QM j

nM jQM j

+ nM kQM k

k≠ j

n

Page 11: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Alignment

ACTGAACCATACGGGTACTGAACCATGAA

AACCAT

GGGTACAACCATTAC

Read from sequencer

GGGTAC AACCAT

Read is added to both repeat regions proportionally to their match quality

Page 12: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Which Program to Use? •  Many different programs. How do they relate? ▫  ELAND (included with Solexa 1G machine) ▫  RMAP (Smith et al., BMC Bioinformatics 2008) ▫  SOAP (Li et al., Bioinformatics 2008) ▫  SeqMap (Jiang et al., Bioinformatics 2008) ▫  Slider (Malhis et al., Bioinformatics 2008) ▫  MAQ (Unpublished, http://maq.sourceforge.net/) ▫  Novocraft (Unpublished, http://www.novocraft.com) ▫  Zoom (Lin et al., Bioinformatics 2008) ▫  Bowtie (Langmead et al., Genome Biology 2009) ▫  …

Page 13: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Simulation Studies

• Ambiguous reads cause: 1.  Missed (unmapped) regions 2.  Too many mapped regions (noise)

b c

Page 14: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

0 5 10 15 20 25 30 35

05

1015

2025

3035

ROC! like Curves

Estimated

Real

gnumaprmapseqmapsoapnovocraft

Simulation Studies

0 5 10 15 20 25 30 350

510

1520

2530

35Ordered Spikes Identified by Algorithm

Real

Spi

kes

in B

ench

mar

k Da

ta S

et

gnumaprmapseqmapsoapnovocraft

0 10 20 30 40

010

2030

40

Estimated

Real

gnumap60% with 10 changes60% with 15 changes15 changes maxed

Page 15: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Actual Data

• ETS1 binding domain • Repetitive region

RALGPS2

RMAP

SOAP

GNUMAP

NOVOCRAFT

20,000 176,940,000 176,960,000 176,980,000 177,000,000 177,020,000 177,040,000 177,060,000

refseq (+)

refseq (-)

Coordinates

RMAP

NOVOCRAFT

GNUMAP

SOAP

Page 16: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

GNUM

ap

Future Plans • Removal of adaptor sequences • Methylation analysis •  Paired-end reads •  SOLiD color space

Page 17: GNUMap: Unbiased Probabilistic Mapping of Next- Generation ...bioresearch.byu.edu/gnumap/ISMB_Presentation.pptx.pdf · G N U M a p Alignment • Given a possible genome match location,

Evan Johnson Quinn Snell Mark Clement Huntsman Cancer Institute

GNUMap