Chapter 11 H3K27me3, wild-type versus knock-out
11.1 Overview
Here, we perform a window-based DB analysis to identify regions of differential H3K27me3 enrichment in mouse lung epithelium. H3K27me3 is associated with transcriptional repression and is usually observed with broad regions of enrichment. The aim of this workflow is to demonstrate how to analyze these broad marks with csaw, especially at variable resolutions with multiple window sizes. We use H3K27me3 ChIP-seq data from a study comparing wild-type (WT) and Ezh2 knock-out (KO) animals (Galvis et al. 2015), contains two biological replicates for each genotype. We download BAM files and indices using chipseqDBData.
## DataFrame with 4 rows and 3 columns
## Name Description Path
## <character> <character> <List>
## 1 SRR1274188 control H3K27me3 (1) <BamFile>
## 2 SRR1274189 control H3K27me3 (2) <BamFile>
## 3 SRR1274190 Ezh2 knock-out H3K27.. <BamFile>
## 4 SRR1274191 Ezh2 knock-out H3K27.. <BamFile>
11.2 Pre-processing checks
We check some mapping statistics with Rsamtools.
library(Rsamtools)
diagnostics <- list()
for (b in seq_along(h3k27me3data$Path)) {
bam <- h3k27me3data$Path[[b]]
total <- countBam(bam)$records
mapped <- countBam(bam, param=ScanBamParam(
flag=scanBamFlag(isUnmapped=FALSE)))$records
marked <- countBam(bam, param=ScanBamParam(
flag=scanBamFlag(isUnmapped=FALSE, isDuplicate=TRUE)))$records
diagnostics[[b]] <- c(Total=total, Mapped=mapped, Marked=marked)
}
diag.stats <- data.frame(do.call(rbind, diagnostics))
rownames(diag.stats) <- h3k27me3data$Name
diag.stats$Prop.mapped <- diag.stats$Mapped/diag.stats$Total*100
diag.stats$Prop.marked <- diag.stats$Marked/diag.stats$Mapped*100
diag.stats
## Total Mapped Marked Prop.mapped Prop.marked
## SRR1274188 24445704 18605240 2769679 76.11 14.89
## SRR1274189 21978677 17014171 2069203 77.41 12.16
## SRR1274190 26910067 18606352 4361393 69.14 23.44
## SRR1274191 21354963 14092438 4392541 65.99 31.17
We construct a readParam
object to standardize the parameter settings in this analysis.
For consistency with the original analysis by Galvis et al. (2015),
we will define the blacklist using the predicted repeats from the RepeatMasker software.
library(BiocFileCache)
bfc <- BiocFileCache("local", ask=FALSE)
black.path <- bfcrpath(bfc, file.path("http://hgdownload.cse.ucsc.edu",
"goldenPath/mm10/bigZips/chromOut.tar.gz"))
tmpdir <- tempfile()
dir.create(tmpdir)
untar(black.path, exdir=tmpdir)
# Iterate through all chromosomes.
collected <- list()
for (x in list.files(tmpdir, full=TRUE)) {
f <- list.files(x, full=TRUE, pattern=".fa.out")
to.get <- vector("list", 15)
to.get[[5]] <- "character"
to.get[6:7] <- "integer"
collected[[length(collected)+1]] <- read.table(f, skip=3,
stringsAsFactors=FALSE, colClasses=to.get)
}
collected <- do.call(rbind, collected)
blacklist <- GRanges(collected[,1], IRanges(collected[,2], collected[,3]))
blacklist
## GRanges object with 5147737 ranges and 0 metadata columns:
## seqnames ranges strand
## <Rle> <IRanges> <Rle>
## [1] chr1 3000001-3002128 *
## [2] chr1 3003153-3003994 *
## [3] chr1 3003994-3004054 *
## [4] chr1 3004041-3004206 *
## [5] chr1 3004207-3004270 *
## ... ... ... ...
## [5147733] chrY_JH584303_random 152557-155890 *
## [5147734] chrY_JH584303_random 155891-156883 *
## [5147735] chrY_JH584303_random 157070-157145 *
## [5147736] chrY_JH584303_random 157909-157960 *
## [5147737] chrY_JH584303_random 157953-158099 *
## -------
## seqinfo: 66 sequences from an unspecified genome; no seqlengths
We set the minimum mapping quality score to 10 to remove poorly or non-uniquely aligned reads. We also restrict ourselves to the standard chromosomes.
library(csaw)
param <- readParam(minq=10, discard=blacklist,
restrict=paste0("chr", c(1:19, "X", "Y")))
param
## Extracting reads in single-end mode
## Duplicate removal is turned off
## Minimum allowed mapping score is 10
## Reads are extracted from both strands
## Read extraction is limited to 21 sequences
## Reads in 5147737 regions will be discarded
11.3 Counting reads into windows
Reads are then counted into sliding windows using csaw (A. T. Lun and Smyth 2016). At this stage, we use a large 2 kbp window to reflect the fact that H3K27me3 exhibits broad enrichment. This allows us to increase the size of the counts and thus detection power, without having to be concerned about loss of genomic resolution to detect sharp binding events.
## class: RangedSummarizedExperiment
## dim: 4611513 4
## metadata(6): spacing width ... param final.ext
## assays(1): counts
## rownames: NULL
## rowData names(0):
## colnames: NULL
## colData names(4): bam.files totals ext rlen
We use spacing=500
to avoid redundant work when sliding a large window across the genome.
The default spacing of 50 bp would result in many windows with over 90% overlap in their positions,
increasing the amount of computational work without a meaningful improvement in resolution.
We also set the fragment length to 200 bp based on experimental knowledge of the size selection procedure.
Unlike the previous analyses, the fragment length cannot easily estimated here due to weak strand bimodality of diffuse marks.
11.4 Filtering of low-abundance windows
We estimate the global background and remove low-abundance windows that are not enriched above this background level. To retain a window, we require it to have at least 2-fold more coverage than the average background. This is less stringent than the thresholds used in previous analyses, owing the weaker enrichment observed for diffuse marks.
bins <- windowCounts(h3k27me3data$Path, bin=TRUE, width=10000, param=param)
filter.stat <- filterWindowsGlobal(win.data, bins)
min.fc <- 2
Figure 11.1 shows that chosen threshold is greater than the abundances of most bins in the genome, presumably those corresponding to background regions. This suggests that the filter will remove most windows lying within background regions.
hist(filter.stat$filter, main="", breaks=50,
xlab="Background abundance (log2-CPM)")
abline(v=log2(min.fc), col="red")
We filter out the majority of windows in background regions upon applying a modest fold-change threshold. This leaves a small set of relevant windows for further analysis.
## Mode FALSE TRUE
## logical 4553052 58461
11.5 Normalization for composition biases
As in the CBP example, we normalize for composition biases resulting from imbalanced DB between conditions. This is because we expect systematic DB in one direction as Ezh2 function (and thus some H3K27me3 deposition activity) is lost in the KO genotype.
## [1] 0.9966 0.9969 1.0079 0.9986
Figure 11.2 shows the effect of normalization on the relative enrichment between pairs of samples. We see that log-ratio of normalization factors passes through the centre of the cloud of background regions in each plot, indicating that the bias has been successfully identified and removed.
bin.ab <- scaledAverage(bins)
adjc <- calculateCPM(bins, use.norm.factors=FALSE)
par(cex.lab=1.5, mfrow=c(1,3))
smoothScatter(bin.ab, adjc[,1]-adjc[,2], ylim=c(-6, 6),
xlab="Average abundance", ylab="Log-ratio (1 vs 2)")
abline(h=log2(normfacs[1]/normfacs[4]), col="red")
smoothScatter(bin.ab, adjc[,1]-adjc[,3], ylim=c(-6, 6),
xlab="Average abundance", ylab="Log-ratio (1 vs 3)")
abline(h=log2(normfacs[2]/normfacs[4]), col="red")
smoothScatter(bin.ab, adjc[,1]-adjc[,4], ylim=c(-6, 6),
xlab="Average abundance", ylab="Log-ratio (1 vs 4)")
abline(h=log2(normfacs[3]/normfacs[4]), col="red")
11.6 Statistical modelling
We first convert our RangedSummarizedExperiment
object into a DGEList
for modelling with edgeR.
## Formal class 'DGEList' [package "edgeR"] with 1 slot
## ..@ .Data:List of 2
## .. ..$ : int [1:58461, 1:4] 17 19 32 33 30 31 31 36 33 29 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : chr [1:58461] "1" "2" "3" "4" ...
## .. .. .. ..$ : chr [1:4] "Sample1" "Sample2" "Sample3" "Sample4"
## .. ..$ :'data.frame': 4 obs. of 3 variables:
## .. .. ..$ group : Factor w/ 1 level "1": 1 1 1 1
## .. .. ..$ lib.size : int [1:4] 10577670 9948013 8579597 5642350
## .. .. ..$ norm.factors: num [1:4] 1 1 1 1
## ..$ names: chr [1:2] "counts" "samples"
We then construct a design matrix for our experimental design. Here, we use a simple one-way layout with two groups of two replicates.
genotype <- h3k27me3data$Description
genotype[grep("control", genotype)] <- "wt"
genotype[grep("knock-out", genotype)] <- "ko"
genotype <- factor(genotype)
design <- model.matrix(~0+genotype)
colnames(design) <- levels(genotype)
design
## ko wt
## 1 0 1
## 2 0 1
## 3 1 0
## 4 1 0
## attr(,"assign")
## [1] 1 1
## attr(,"contrasts")
## attr(,"contrasts")$genotype
## [1] "contr.treatment"
We estimate the negative binomial (NB) and quasi-likelihood (QL) dispersions for each window. We again observe an increasing trend in the NB dispersions with respect to abundance (Figure 11.3).
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 0.00837 0.00884 0.00942 0.01026 0.00988 0.02363
The QL dispersions are strongly shrunk towards the trend (Figure 11.4), indicating that there is little variability in the dispersions across windows.
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 0.52 105.45 105.45 105.39 105.45 105.45
These results are consistent with the presence of systematic differences in enrichment between replicates, as discussed in Section 10.6. Nonetheless, the samples separate by genotype in the MDS plot (Figure 11.5), which suggests that the downstream analysis will be able to detect DB regions.
We then test for DB between conditions in each window using the QL F-test.
11.7 Consolidating results from multiple window sizes
Consolidation allows the analyst to incorporate information from a range of different window sizes, each of which has a different trade-off between resolution and count size. This is particularly useful for broad marks where the width of an enriched region can be variable, as can the width of the differentially bound interval of an enriched region. To demonstrate, we repeat the entire analysis using 500 bp windows. Compared to our previous 2 kbp analysis, this provides greater spatial resolution at the cost of lowering the counts.
# Counting into 500 bp windows.
win.data2 <- windowCounts(h3k27me3data$Path, param=param, width=500,
spacing=100, ext=200)
# Re-using the same normalization factors.
win.data2$norm.factors <- win.data$norm.factors
# Filtering on abundance.
filter.stat2 <- filterWindowsGlobal(win.data2, bins)
keep2 <- filter.stat2$filter > log2(min.fc)
filtered.data2 <- win.data2[keep2,]
# Performing the statistical analysis.
y2 <- asDGEList(filtered.data2)
y2 <- estimateDisp(y2, design)
fit2 <- glmQLFit(y2, design, robust=TRUE)
res2 <- glmQLFTest(fit2, contrast=contrast)
We consolidate the 500 bp analysis with our previous 2 kbp analysis using the mergeWindowsList()
function.
This clusters both sets of windows together into a single set of regions.
To limit chaining effects, each region cannot be more than 30 kbp in size.
merged <- mergeResultsList(list(filtered.data, filtered.data2),
tab.list=list(res$table, res2$table),
equiweight=TRUE, tol=100, merge.args=list(max.width=30000))
merged$regions
## GRanges object with 80139 ranges and 0 metadata columns:
## seqnames ranges strand
## <Rle> <IRanges> <Rle>
## [1] chr1 3050001-3052500 *
## [2] chr1 3086401-3087200 *
## [3] chr1 3098001-3098800 *
## [4] chr1 3139501-3140100 *
## [5] chr1 3211501-3212600 *
## ... ... ... ...
## [80135] chrY 90766001-90769500 *
## [80136] chrY 90774801-90775900 *
## [80137] chrY 90788501-90789000 *
## [80138] chrY 90793101-90793700 *
## [80139] chrY 90797001-90814000 *
## -------
## seqinfo: 21 sequences from an unspecified genome
We compute combined \(p\)-values using Simes’ method for region-level FDR control (Simes 1986; A. T. Lun and Smyth 2014). This is done after weighting the contributions from the two sets of windows to ensure that the combined \(p\)-value for each region is not dominated by the analysis with more (smaller) windows.
## Mode FALSE TRUE
## logical 72038 8101
Ezh2 is one of the proteins responsible for depositing H3K27me3, so we might expect that most DB regions have increased enrichment in the WT condition. However, the opposite seems to be true here, which is an interesting result that may warrant further investigation.
##
## down up
## 5779 2322
We also obtain statistics for the window with the lowest \(p\)-value in each region.
The signs of the log-fold changes are largely consistent with the direction
numbers above.
## Mode FALSE TRUE
## logical 5779 2322
Finally, we save these results to file for future reference.
11.8 Annotation and visualization
We add annotation for each region using the detailRanges()
function,
as previously described.
library(TxDb.Mmusculus.UCSC.mm10.knownGene)
library(org.Mm.eg.db)
anno <- detailRanges(out.ranges, orgdb=org.Mm.eg.db,
txdb=TxDb.Mmusculus.UCSC.mm10.knownGene)
mcols(out.ranges) <- cbind(mcols(out.ranges), anno)
We visualize one of the DB regions overlapping the Cdx2 gene to reproduce the results in Holik et al. (2015).
cdx2 <- genes(TxDb.Mmusculus.UCSC.mm10.knownGene)["12591"] # Cdx2 Entrez ID
cur.region <- subsetByOverlaps(out.ranges, cdx2)[1]
cur.region
## GRanges object with 1 range and 12 metadata columns:
## seqnames ranges strand | num.tests num.up.logFC
## <Rle> <IRanges> <Rle> | <integer> <integer>
## [1] chr5 147299501-147322500 * | 138 92
## num.down.logFC PValue FDR direction rep.test rep.logFC
## <integer> <numeric> <numeric> <character> <integer> <numeric>
## [1] 0 5.44177e-07 0.000112396 up 44791 2.95248
## best.logFC overlap left right
## <numeric> <character> <character> <character>
## [1] 2.60536 Cdx2:-:PE,Urad:-:PE
## -------
## seqinfo: 21 sequences from an unspecified genome
We use Gviz (F. and R. 2016) to plot the results. As in the H3K9ac analysis, we set up some tracks to display genome coordinates and gene annotation.
library(Gviz)
gax <- GenomeAxisTrack(col="black", fontsize=15, size=2)
greg <- GeneRegionTrack(TxDb.Mmusculus.UCSC.mm10.knownGene, showId=TRUE,
geneSymbol=TRUE, name="", background.title="transparent")
symbols <- unlist(mapIds(org.Mm.eg.db, gene(greg), "SYMBOL",
"ENTREZID", multiVals = "first"))
symbol(greg) <- symbols[gene(greg)]
In Figure 11.6, we see enrichment of H3K27me3 in the WT condition at the Cdx2 locus. This is consistent with the known regulatory relationship between Ezh2 and Cdx2.
collected <- list()
lib.sizes <- filtered.data$totals/1e6
for (i in seq_along(h3k27me3data$Path)) {
reads <- extractReads(bam.file=h3k27me3data$Path[[i]], cur.region, param=param)
cov <- as(coverage(reads)/lib.sizes[i], "GRanges")
collected[[i]] <- DataTrack(cov, type="histogram", lwd=0, ylim=c(0,1),
name=h3k27me3data$Description[i], col.axis="black", col.title="black",
fill="darkgray", col.histogram=NA)
}
plotTracks(c(gax, collected, greg), chromosome=as.character(seqnames(cur.region)),
from=start(cur.region), to=end(cur.region))
In contrast, if we look at a constitutively expressed gene, such as Col1a2, we find little evidence of H3K27me3 deposition. Only a single window is retained after filtering on abundance, and this window shows no evidence of changes in H3K27me3 enrichment between WT and KO samples.
col1a2 <- genes(TxDb.Mmusculus.UCSC.mm10.knownGene)["12843"] # Col1a2 Entrez ID
cur.region <- subsetByOverlaps(out.ranges, col1a2)
cur.region
## GRanges object with 1 range and 12 metadata columns:
## seqnames ranges strand | num.tests num.up.logFC num.down.logFC
## <Rle> <IRanges> <Rle> | <integer> <integer> <integer>
## [1] chr6 4511701-4512200 * | 1 0 0
## PValue FDR direction rep.test rep.logFC best.logFC
## <numeric> <numeric> <character> <integer> <numeric> <numeric>
## [1] 0.211983 0.416507 down 312358 -0.715256 -0.715256
## overlap left right
## <character> <character> <character>
## [1] Col1a2:+:I Col1a2:+:907 Col1a2:+:161
## -------
## seqinfo: 21 sequences from an unspecified genome
Session information
R Under development (unstable) (2024-10-21 r87258)
Platform: x86_64-pc-linux-gnu
Running under: Ubuntu 24.04.1 LTS
Matrix products: default
BLAS: /home/biocbuild/bbs-3.21-bioc/R/lib/libRblas.so
LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.0
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_GB LC_COLLATE=C
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
time zone: America/New_York
tzcode source: system (glibc)
attached base packages:
[1] grid stats4 stats graphics grDevices utils datasets
[8] methods base
other attached packages:
[1] Gviz_1.51.0
[2] org.Mm.eg.db_3.20.0
[3] TxDb.Mmusculus.UCSC.mm10.knownGene_3.10.0
[4] GenomicFeatures_1.59.1
[5] AnnotationDbi_1.69.0
[6] edgeR_4.5.0
[7] limma_3.63.2
[8] csaw_1.41.0
[9] SummarizedExperiment_1.37.0
[10] Biobase_2.67.0
[11] MatrixGenerics_1.19.0
[12] matrixStats_1.4.1
[13] BiocFileCache_2.15.0
[14] dbplyr_2.5.0
[15] Rsamtools_2.23.0
[16] Biostrings_2.75.1
[17] XVector_0.47.0
[18] GenomicRanges_1.59.0
[19] GenomeInfoDb_1.43.0
[20] IRanges_2.41.0
[21] S4Vectors_0.45.1
[22] BiocGenerics_0.53.1
[23] generics_0.1.3
[24] chipseqDBData_1.23.0
[25] BiocStyle_2.35.0
[26] rebook_1.17.0
loaded via a namespace (and not attached):
[1] RColorBrewer_1.1-3 rstudioapi_0.17.1 jsonlite_1.8.9
[4] CodeDepends_0.6.6 magrittr_2.0.3 rmarkdown_2.29
[7] BiocIO_1.17.0 zlibbioc_1.53.0 vctrs_0.6.5
[10] memoise_2.0.1 RCurl_1.98-1.16 base64enc_0.1-3
[13] htmltools_0.5.8.1 S4Arrays_1.7.1 progress_1.2.3
[16] AnnotationHub_3.15.0 curl_6.0.0 SparseArray_1.7.1
[19] Formula_1.2-5 sass_0.4.9 KernSmooth_2.23-24
[22] bslib_0.8.0 htmlwidgets_1.6.4 httr2_1.0.6
[25] cachem_1.1.0 GenomicAlignments_1.43.0 mime_0.12
[28] lifecycle_1.0.4 pkgconfig_2.0.3 Matrix_1.7-1
[31] R6_2.5.1 fastmap_1.2.0 GenomeInfoDbData_1.2.13
[34] digest_0.6.37 colorspace_2.1-1 ExperimentHub_2.15.0
[37] Hmisc_5.2-0 RSQLite_2.3.7 filelock_1.0.3
[40] fansi_1.0.6 httr_1.4.7 abind_1.4-8
[43] compiler_4.5.0 bit64_4.5.2 withr_3.0.2
[46] backports_1.5.0 htmlTable_2.4.3 BiocParallel_1.41.0
[49] DBI_1.2.3 biomaRt_2.63.0 rappdirs_0.3.3
[52] DelayedArray_0.33.1 rjson_0.2.23 tools_4.5.0
[55] foreign_0.8-87 nnet_7.3-19 glue_1.8.0
[58] restfulr_0.0.15 checkmate_2.3.2 cluster_2.1.6
[61] gtable_0.3.6 BSgenome_1.75.0 ensembldb_2.31.0
[64] data.table_1.16.2 hms_1.1.3 metapod_1.15.0
[67] xml2_1.3.6 utf8_1.2.4 BiocVersion_3.21.1
[70] pillar_1.9.0 stringr_1.5.1 splines_4.5.0
[73] dplyr_1.1.4 lattice_0.22-6 deldir_2.0-4
[76] rtracklayer_1.67.0 bit_4.5.0 biovizBase_1.55.0
[79] tidyselect_1.2.1 locfit_1.5-9.10 knitr_1.49
[82] gridExtra_2.3 bookdown_0.41 ProtGenerics_1.39.0
[85] xfun_0.49 statmod_1.5.0 stringi_1.8.4
[88] UCSC.utils_1.3.0 lazyeval_0.2.2 yaml_2.3.10
[91] evaluate_1.0.1 codetools_0.2-20 interp_1.1-6
[94] tibble_3.2.1 BiocManager_1.30.25 graph_1.85.0
[97] cli_3.6.3 rpart_4.1.23 munsell_0.5.1
[100] jquerylib_0.1.4 dichromat_2.0-0.1 Rcpp_1.0.13-1
[103] dir.expiry_1.15.0 png_0.1-8 XML_3.99-0.17
[106] parallel_4.5.0 ggplot2_3.5.1 blob_1.2.4
[109] prettyunits_1.2.0 jpeg_0.1-10 latticeExtra_0.6-30
[112] AnnotationFilter_1.31.0 bitops_1.0-9 VariantAnnotation_1.53.0
[115] scales_1.3.0 purrr_1.0.2 crayon_1.5.3
[118] rlang_1.1.4 KEGGREST_1.47.0