Taking a closer look at peaks

ChIP-seq with Bioconductor in R

Peter Humburg

Statistician, Macquarie University

Using Gviz

ChIP-seq with Bioconductor in R

What are we plotting?

ChIP-seq with Bioconductor in R

What are we plotting?

ChIP-seq with Bioconductor in R

What are we plotting?

ChIP-seq with Bioconductor in R

What are we plotting?

ChIP-seq with Bioconductor in R

Setting-up coordinates

library(Gviz)

ideogram <- IdeogramTrack("chr12", "hg19")
axis <- GenomeAxisTrack()
plotTracks(list(ideogram, axis), from=101360000, to=101380000)

ChIP-seq with Bioconductor in R

Adding Data

cover_track <- DataTrack(cover_ranges,window=100000,type='h',name="Coverage")
plotTracks(list(ideogram, cover_track, axis), from=101360000, to=101380000)

ChIP-seq with Bioconductor in R

Adding Annotations

peak_track <- AnnotationTrack(peaks, name="Peaks")
plotTracks(list(ideogram, cover_track, peak_track, axis), 
           from=101360000, to=101380000)

ChIP-seq with Bioconductor in R

Gene Annotations

library(TxDb.Hsapiens.UCSC.hg19.knownGene)

tx <- GeneRegionTrack(TxDb.Hsapiens.UCSC.hg19.knownGene, chromosome="chr12", start=101360000, end=101380000, name="Genes") plotTracks(list(ideogram, cover_track, peak_track, tx, axis), from=101360000, to=101380000)

ChIP-seq with Bioconductor in R

Let's practice!

ChIP-seq with Bioconductor in R

Preparing Video For Download...