Top Banner
Analyzing ChIP-seq data R. Gentleman, D. Sarkar, S. Tapscott, Y. Cao, Z. Yao, M. Lawrence, P. Aboyoun, M. Morgan, L. Ruzzo, J. Davison, H. Pages
22

ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Nov 09, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Analyzing ChIP-seq data

R. Gentleman, D. Sarkar, S. Tapscott, Y. Cao, Z. Yao, M. Lawrence, P. Aboyoun, M.

Morgan, L. Ruzzo, J. Davison, H. Pages

Page 2: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Biological Motivation •  Chromatin-immunopreciptation followed by

sequencing (ChIP-seq) is a powerful tool for: –  epigenetics

•  histone modifications •  methylation

–  locating transcription factor (TF) DNA interactions

•  HTS technologies have made a number of experiments possible

•  my interest is in somewhat complex ones (time-course; multi-factor experiments)

Page 3: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Experimental Design

Solexa Sequencing

Chromatin IP with anti-Myod antisera

C2C12 Myoblasts

C2C12 Myotubes

Gene specific QC-PCR

Page 4: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Computational Challenges •  we are studying MyoD, a member of the

bHLH family of TFs, and CTCF •  MYOD bind to an EBOX; CANNTG

–  there are lots of potential binding sites –  14 million in mice; 16 million in humans –  do different members have different sequence

specificity

•  CTCF: 11 zinc finger protein long binding site –  Long complex PWM – Association with Tes

Page 5: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Computational Challenges •  what role do co-factors play •  experiments with them ko-d or

silenced •  time course •  other data

– methylation – Histone modifications

Page 6: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Workflow •  Preprocessing

–  fragment length estimation; finding the most likely binding site

–  estimate background; do you need a control lane? Which peaks represent binding?

–  did we sequence deeply enough? •  tools to perform these tasks are in the

chipseq package •  comparison of complex experiments is on

going research •  adding genomic context: IRanges/

rtracklayer etc

Page 7: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Observed Data •  we exclude (but ultimately won’t) reads that

map to more than one location •  we exclude reads that map to the same start

location and orientation (since in our setting we believe that these are likely due to PCR bias)

•  this forces us to think a bit about the mappable genome: that part of the genome we could have mapped to –  so for 36nt reads we want to know how much of

the genome is unique

Page 8: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Observed Data •  each fragment contributes a read, of some

length (36mers for much of our data), but the real fragment of DNA was likely longer and the protein DNA interaction was somewhere on that longer fragment –  single end reads: we read a short sequence from

one end –  paired end reads: we get a short sequence from

both ends •  XSET: eXtended single-end tags

–  how much should they be extended

Page 9: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Notation •  island: a contiguous section covered by

reads •  singleton: an island covered by 1 read

•  island size: number of reads in the island •  island depth: maximum number of reads

that overlap •  inter-island gap: the number of nt between

two islands

Page 10: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Estimating Fragment length •  there are several methods in the literature

for estimating the mean fragment length –  Kharchenko et al is quite good –  Jothi et al is quite bad

•  our method: –  choose a lower bound, w, for the mean fragment

length; extend all reads by w –  shift each negative strand read by an amount u –  compute the total number of bases covered by

any read –  find the value umin of u for which the number of

bases covered is a minimum –  estimate the mean length by w + umin

Page 11: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Estimating the fragment length •  mean fragment length is not such a good thing

–  something more like the 90%-ile of the distribution is likely to be more useful

–  with the xSet method we want to extend and cover the binding site

•  when you have a known TF you can (and probably should) make use of its known PWM to find putatitive binding sites

•  then for each read that maps to the genome you can find the nearest potential binding site, and from this we get a set of truncated estimates for L

•  and then we can estimate percentiles of that distribution

Page 12: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Comparison of Methods

Estimated mean fragment length in observed data

SISSR

Coverage

Correlation

MLE+

MLE!

CTCF_all CTCF_1 CTCF_2 CTCF_3 fibroblast myotube

SISSR

Coverage

Correlation

MLE+

MLE!

50 100 200 300

GFP_all

50 100 200 300

GFP_1

50 100 200 300

GFP_2

50 100 200 300

GFP_3

50 100 200 300

GFP_4

50 100 200 300

myo_control

Page 13: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Foreground vs Background •  we observe both reads that correspond to

–  foreground: they represents or some kind of affinity (not necessarily just what we want)

–  background:low density reads from throughout the genome

•  we want to separate these two types of signal –  the background varies within a genome and

between individuals •  finding foreground is not the same problem as

finding the most likely binding site –  some peaks cover multiple binding sites –  some peaks cover no TF binding sites

Page 14: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Background Varies

Location (Mb) along chr1

Local estim

ate

of la

mbda (

mean isla

nd d

epth

)

0.20.40.60.81.01.2

CT

CF

_all

0.10.20.30.40.50.6

CT

CF

_1

0.0

0.2

0.4

0.6

CT

CF

_2

0.00.10.20.30.40.5

CT

CF

_3

0.00.10.20.30.40.50.6

fibro

bla

st

0.2

0.4

0.6

myotu

be

0.5

1.0

1.5

GF

P_all

0.0

0.2

0.4

0.6

GF

P_1

0.10.20.30.40.50.6

GF

P_2

0.00.10.20.30.40.5

GF

P_3

0.00.10.20.30.40.50.6

GF

P_4

0.0

0.2

0.4

0.6

0 50 100 150 200

myo_contr

ol

Page 15: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Null model •  null model: assume reads are distributed

uniformly along the genome (Lander and Waterman, 1988)

•  if all XSETs are of length L and let α denote the probability of a new XSET starting at any base

•  then we can easily show that the number of reads in an island follows a Geometric distribution P(N=k) = pk-1(1-p)

where p = 1 - (1- α)L

•  but we should only use background reads! •  we propose estimating p by using islands of

size 1 or 2; and this gives us an estimate of α

Page 16: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Peak Discovery •  given the Poisson model for background,

and α, we can develop criteria for peak heights

•  we can then select a cut-off based on the probability that a peak of height k is unlikely given the background rate

•  for de novo peak detection there are some problems, since the data also determine the peaks

•  we did some simulation to show the effect is not so large, and we can use the simple Poisson model

Page 17: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Estimation of the background

•  number of reads per island for Chromosome 1 (mouse)

•  black line is an estimate of p, using islands with only one or two reads

Page 18: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Did we sequence deeply enough? •  we can divide the genome into three

categories –  foreground, background, empty

•  foreground is not informative about whether you have sequenced deeply enough

•  background is informative

Page 19: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Deep Enough? •  partition the data into k groups •  add each group sequentially, and after it is

added compute proportion covered by foreground (peak >= l); background (covered by reads, count < l); empty (not covered)

•  for the next group we can estimate the expected number of reads that will cover each of these regions

•  if we have undiscovered foreground, then we will see that the number of reads that map to background is larger than expected.

Page 20: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Deep Enough? Chromosome: chr1

Number of reads !! 10000

Estim

ate

d P

rop

ort

ion

of

ba

ckg

rou

nd

re

ad

s (

alp

ha

* G

_m

ap

pa

ble

/ n

)

1.0

1.5

2.0

2.5

3.0

CTCF_all

0 5 10 15 20 25

CTCF_1 CTCF_2

0 5 10 15 20 25

CTCF_3 fibroblast

0 5 10 15 20 25

myotube

0 10 20 30 40 50 60

GFP_all GFP_1

0 5 10 15 20 25

GFP_2

0 5 10 15 20 25

GFP_3

0 5 10 15 20 25

GFP_4

1.0

1.5

2.0

2.5

3.0

myo_control

estimate=G_mappable * alpha / nestimate=proportion of reads in background at cutoff=9

Page 21: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Foreground Foreground cutoff: 12

Number of reads !! 10000

adju

ste

d fg r

eads / tota

l re

ads

0.00

0.05

0.10

0.15

0.20CTCF_all

0 50 150 250

CTCF_1 CTCF_2

0 50 150 250

CTCF_3 fibroblast

0 50 150 250

myotube

0 200 400 600 800

GFP_all GFP_1

0 50 150 250

GFP_2

0 50 150 250

GFP_3

0 50 150 250

GFP_4

0.00

0.05

0.10

0.15

0.20myo_control

Page 22: ChipSeqBioC2009 - Bioconductor · Title ChipSeqBioC2009.ppt Author rgentlem Created Date 7/27/2009 6:02:12 PM

Where did the TF bind?

This is the likely binding site

single binding site

multiple binding sites

now things are less clear

• we should get reads from both the + and - strand • the reads on the - strand should be upstream of the binding site • those on the + strand should be downstream