--- title: "Detecting differential binding of CBP in mouse fibroblasts" author: - name: Aaron T. L. Lun affiliation: - &WEHI The Walter and Eliza Hall Institute of Medical Research, 1G Royal Parade, Parkville, VIC 3052, Melbourne, Australia - Department of Medical Biology, The University of Melbourne, Parkville, VIC 3010, Melbourne, Australia - name: Gordon K. Smyth affiliation: - *WEHI - Department of Mathematics and Statistics, The University of Melbourne, Parkville, VIC 3010, Melbourne, Australia date: "`r Sys.Date()`" vignette: > %\VignetteIndexEntry{Detecting differential binding of CBP in mouse fibroblasts} %\VignetteEngine{knitr::rmarkdown} output: BiocStyle::html_document: fig_caption: yes bibliography: ref.bib --- ```{r style, echo=FALSE, results='hide', message=FALSE} library(BiocStyle) library(knitr) opts_chunk$set(error=FALSE, message=FALSE, warning=FALSE) opts_chunk$set(fig.asp=1) ``` # Overview Here, we perform a window-based DB analysis to identify differentially bound (DB) regions for CREB-binding protein (CBP). We use CBP ChIP-seq data from a study comparing wild-type (WT) and CBP knock-out (KO) animals [@kasper2014genomewide], with two biological replicates for each genotype. Most, if not all, of the DB sites should be increased in the WT, given that protein function should be compromised in the KO. This provides an example of how to use the workflow with transcription factor (TF) data, to complement the previous H3K9ac analysis. # Aligning reads from CBP libraries Libraries are downloaded from the NCBI GEO data series GSE54453, using the SRA accessions listed below. One file is available for each library, i.e., no technical replicates. ```{r} sra.numbers <- c("SRR1145787", "SRR1145788", "SRR1145789", "SRR1145790") genotype <- c("wt", "wt", "ko", "ko") all.sra <- paste0(sra.numbers, ".sra") data.frame(SRA=all.sra, Condition=genotype) ``` SRA files are unpacked to yield FASTQ files with the raw read sequences. ```{r, echo=FALSE, results="hide"} remap <- FALSE redownload <- any(!file.exists(paste0(sra.numbers, ".bam"))) ``` ```{r, eval=remap} for (sra in all.sra) { code <- system(paste("fastq-dump", sra)) stopifnot(code==0L) } all.fastq <- paste0(sra.numbers, ".fastq") ``` Reads are aligned to the mm10 genome using `r Biocpkg("Rsubread")`. Here, the default consensus threshold is used as the reads are longer (75 bp). A Phred offset of +64 is also used, instead of the default +33 used in the previous analysis. ```{r, eval=remap, message=FALSE, results="hide"} bam.files <- paste0(sra.numbers, ".bam") align(index="index/mm10", readfile1=all.fastq, type=1, phredOffset=64, input_format="FASTQ", output_file=bam.files) ``` Alignments in each BAM file are sorted by coordinate. Duplicate reads are marked, and the resulting files are indexed. ```{r, eval=remap, results="hide"} temp.bam <- "cbp_temp.bam" temp.file <- "cbp_metric.txt" temp.dir <- "cbp_working" dir.create(temp.dir) for (bam in bam.files) { out <- suppressWarnings(sortBam(bam, "cbp_temp")) file.rename(out, bam) code <- system(sprintf("MarkDuplicates I=%s O=%s M=%s \\ TMP_DIR=%s AS=true REMOVE_DUPLICATES=false \\ VALIDATION_STRINGENCY=SILENT", bam, temp.bam, temp.file, temp.dir)) stopifnot(code==0L) file.rename(temp.bam, bam) } indexBam(bam.files) ``` ```{r, eval=remap, echo = FALSE, results = 'hide'} # Cleaning up unlink(all.fastq) unlink(temp.dir, recursive=TRUE) unlink(temp.file) ``` Some mapping statistics are reported as previously described. ```{r, echo=FALSE, results="hide", eval=!remap, message=FALSE} bam.files <- paste0(sra.numbers, ".bam") ``` ```{r, echo=FALSE, results="hide", eval=redownload, message=FALSE} core.loc <- "http://s3.amazonaws.com/chipseqdb-bamfiles/" for (bam in bam.files) { bam.url <- paste0(core.loc, bam) download.file(bam.url, bam) download.file(paste0(bam.url, ".bai"), paste0(bam, ".bai")) } ``` ```{r} library(Rsamtools) diagnostics <- list() for (bam in bam.files) { 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[[bam]] <- c(Total=total, Mapped=mapped, Marked=marked) } diag.stats <- data.frame(do.call(rbind, diagnostics)) diag.stats$Prop.mapped <- diag.stats$Mapped/diag.stats$Total*100 diag.stats$Prop.marked <- diag.stats$Marked/diag.stats$Mapped*100 diag.stats ``` # Counting reads into windows First, a `readParam` object is constructed to standardize the parameter settings in this analysis. The ENCODE blacklist is again used to remove reads in problematic regions [@encode2012encode]. For consistency, the MAPQ threshold of 50 is also re-used here for removing poorly aligned reads. Lower thresholds (e.g., from 10 to 20) can be used for longer reads with more reliable mapping locations - though in practice, the majority of long read alignments reported by `r Biocpkg("Rsubread")` tend to have very high or very low MAPQ scores, such that the exact choice of the MAPQ threshold is not a critical parameter. ```{r} library(rtracklayer) blacklist <- import("mm10.blacklist.bed.gz") library(csaw) param <- readParam(minq=50, discard=blacklist) ``` The average fragment length is estimated by maximizing the cross-correlation function, as previously described. ```{r} x <- correlateReads(bam.files, param=reform(param, dedup=TRUE)) frag.len <- maximizeCcf(x) frag.len ``` Reads are then counted into sliding windows using `r Biocpkg("csaw")` [@lun2015csaw]. For TF data analyses, smaller windows are necessary to capture sharp binding sites. A large window size will be suboptimal as the count for a particular site will be "contaminated" by non-specific background in the neighbouring regions. In this case, a window size of 10 bp is used. ```{r} win.data <- windowCounts(bam.files, param=param, width=10, ext=frag.len) win.data ``` The default spacing of 50 bp is also used here. This may seem inappropriate, given that the windows are only 10 bp. However, reads lying in the interval between adjacent windows will still be counted into several windows. This is because reads are extended to the value of `frag.len`, which is substantially larger than the 50 bp spacing. Again, smaller spacings can be used but will provide little benefit, given that each extended read already overlaps multiple windows. # Normalization for composition biases Composition biases are introduced when the amount of DB in each condition is unbalanced [@robinson2010scaling; @lun2014denovo]. More binding in one condition means that more reads are sequenced at the binding sites, leaving fewer reads for the rest of the genome. This suppresses the genomic coverage at non-DB sites, resulting in spurious differences between libraries. To remove this bias, reads are counted into large genomic bins. Most bins are assumed to represent non-DB background regions. Any systematic differences in the coverage of those bins is attributed to composition bias and is normalized out. Specifically, the TMM method [@robinson2010scaling] is applied to compute normalization factors from the bin counts. These factors are then applied to the DB analysis with the window counts. ```{r} bins <- windowCounts(bam.files, bin=TRUE, width=10000, param=param) win.data <- normFactors(bins, se.out=win.data) normfacs <- win.data$norm.factors normfacs ``` The effect of normalization is visualized with some mean-difference plots between pairs of libraries (Figure \@ref(fig:compoplot)). The dense cloud in each plot represents the majority of bins in the genome. These are assumed to mostly contain background regions. A non-zero log-fold change for these bins indicates that composition bias is present between libraries. The red line represents the log-ratio of normalization factors and passes through the centre of the cloud in each plot, indicating that the bias has been successfully identified and removed. ```{r compoplot, fig.width=12, fig.asp=0.5, fig.cap="Mean-difference plots for the bin counts, comparing library 4 to all other libraries. The red line represents the log-ratio of the normalization factors between libraries."} 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[,4], ylim=c(-6, 6), xlab="Average abundance", ylab="Log-ratio (1 vs 4)") abline(h=log2(normfacs[1]/normfacs[4]), col="red") smoothScatter(bin.ab, adjc[,2]-adjc[,4], ylim=c(-6, 6), xlab="Average abundance", ylab="Log-ratio (2 vs 4)") abline(h=log2(normfacs[2]/normfacs[4]), col="red") smoothScatter(bin.ab, adjc[,3]-adjc[,4], ylim=c(-6, 6), xlab="Average abundance", ylab="Log-ratio (3 vs 4)") abline(h=log2(normfacs[3]/normfacs[4]), col="red") ``` Note that this normalization strategy is quite different from that in the H3K9ac analysis. Here, systematic DB in one direction is expected between conditions, given that CBP function is lost in the KO genotype. This means that the assumption of a non-DB majority (required for non-linear normalization of the H3K9ac data) is not valid. No such assumption is made by the binned-TMM approach described above, which makes it more appropriate for use in the CBP analysis. ### Filtering of low-abundance windows Removal of low-abundance windows is performed as previously described. The majority of windows in background regions are filtered out upon applying a modest fold-change threshold. This leaves a small set of relevant windows for further analysis. ```{r} filter.stat <- filterWindows(win.data, bins, type="global") min.fc <- 3 keep <- filter.stat$filter > log2(min.fc) summary(keep) filtered.data <- win.data[keep,] ``` Note that the 10 kbp bins are used here for filtering, while smaller 2 kbp bins were used in the corresponding step for the H3K9ac analysis. This is purely for convenience -- the 10 kbp counts for this data set were previously loaded for normalization, and can be re-used during filtering to save time. Changes in bin size will have little impact on the results, so long as the bins (and their counts) are large enough for precise estimation of the background abundance. While smaller bins provide greater spatial resolution, this is irrelevant for quantifying coverage in large background regions that span most of the genome. # Statistical modelling of biological variability Counts for each window are modelled using `r Biocpkg("edgeR")` as previously described [@mccarthy2012differential; @robinson2010edger]. First, a design matrix is constructed for our experimental design. ```{r} genotype <- factor(genotype) design <- model.matrix(~0+genotype) colnames(design) <- levels(genotype) design ``` Estimation of the NB and QL dispersions is performed for each window [@lund2012ql]. The estimated NB dispersions are substantially larger than those observed in the H3K9ac data set. In addition, the estimated prior d.f. is infinite. ```{r} library(edgeR) y <- asDGEList(filtered.data, norm.factors=normfacs) y <- estimateDisp(y, design) summary(y$trended.dispersion) fit <- glmQLFit(y, design, robust=TRUE) summary(fit$df.prior) ``` These statistics are consistent with the presence of a batch effect between replicates. The dispersions for all windows are inflated to a similarly large value by the batch effect, resulting in low variability in the dispersions across windows. This is illustrated in Figure \@ref(fig:mdsplot) where the WT libraries are clearly separated in both dimensions of the MDS plot. In particular, separation of replicates on the first dimension is indicative of a systematic difference of size comparable to that between genotypes. ```{r mdsplot, fig.cap="MDS plot with two dimensions for all libraries in the CBP data set. Libraries are labelled and coloured according to the genotype. A larger top set of windows was used to improve the visualization of the genome-wide differences between the WT libraries."} plotMDS(cpm(y, log=TRUE), top=10000, labels=genotype, col=c("red", "blue")[as.integer(genotype)]) ``` The presence of a large batch effect between replicates is not ideal. Nonetheless, the DB analysis can proceed, albeit with some loss of power due to the inflated NB dispersions. # Testing for DB DB windows are identified using the QL F-test. Windows are clustered into regions, and the region-level FDR is controlled using Simes' method [@simes1986; @lun2014denovo]. All significant regions have increased CBP binding in the WT genotype. This is expected, given that protein function should be lost in the KO genotype. ```{r} contrast <- makeContrasts(wt-ko, levels=design) res <- glmQLFTest(fit, contrast=contrast) merged <- mergeWindows(rowRanges(filtered.data), tol=100, max.width=5000) tabcom <- combineTests(merged$id, res$table) tabbest <- getBestTest(merged$id, res$table) is.sig <- tabcom$FDR <= 0.05 summary(is.sig) table(tabcom$direction[is.sig]) is.sig.pos <- (tabbest$logFC > 0)[is.sig] summary(is.sig.pos) ``` These results are saved to file, as previously described. Key objects are also saved for convenience. ```{r} out.ranges <- merged$region elementMetadata(out.ranges) <- data.frame(tabcom, best.pos=mid(ranges(rowRanges(filtered.data[tabbest$best]))), best.logFC=tabbest$logFC) saveRDS(file="cbp_results.rds", out.ranges) save(file="cbp_objects.Rda", win.data, bins, y) ``` # Annotation and visualization Annotation for each region is added using the `detailRanges` function, as previously described. ```{r} 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) meta <- elementMetadata(out.ranges) elementMetadata(out.ranges) <- data.frame(meta, anno) ``` One of the top-ranked DB regions will be visualized here. This corresponds to a simple DB event as all windows are changing in the same direction, i.e., up in the WT. The binding region is also quite small relative to some of the H3K9ac examples, consistent with sharp TF binding to a specific recognition site. ```{r} o <- order(out.ranges$PValue) cur.region <- out.ranges[o[2]] cur.region ``` ```{r, results="hide", echo=FALSE} if (!overlapsAny(cur.region, GRanges("chr16", IRanges(70313851, 70314860)), type="equal")) { warning("first region does not match expectations") } ``` Plotting is performed using `r Biocpkg("Gviz")` [@hahne2016visualizing] with two tracks for each library -- one for the forward-strand coverage, another for the reverse-strand coverage. This allows visualization of the strand bimodality that is characteristic of genuine TF binding sites. In Figure \@ref(fig:tfplot), two adjacent sites are present at the *Gbe1* promoter, both of which exhibit increased binding in the WT genotype. Coverage is also substantially different between the WT replicates, consistent with the presence of a batch effect. ```{r tfplot, fig.width=8, fig.asp=0.75, fig.cap="Coverage tracks for TF binding sites that are differentially bound in the WT (top two tracks) against the KO (last two tracks). Blue and red tracks represent forward- and reverse-strand coverage, respectively, on a per-million scale (capped at 5 in SRR1145788, for visibility)."} library(Gviz) collected <- list() lib.sizes <- filtered.data$totals/1e6 for (i in seq_along(bam.files)) { reads <- extractReads(bam.file=bam.files[i], cur.region, param=param) pcov <- as(coverage(reads[strand(reads)=="+"])/lib.sizes[i], "GRanges") ncov <- as(coverage(reads[strand(reads)=="-"])/-lib.sizes[i], "GRanges") ptrack <- DataTrack(pcov, type="histogram", lwd=0, ylim=c(-5, 5), name=bam.files[i], col.axis="black", col.title="black", fill="blue", col.histogram=NA) ntrack <- DataTrack(ncov, type="histogram", lwd=0, ylim=c(-5, 5), fill="red", col.histogram=NA) collected[[i]] <- OverlayTrack(trackList=list(ptrack, ntrack)) } gax <- GenomeAxisTrack(col="black", fontsize=15, size=2) greg <- GeneRegionTrack(TxDb.Mmusculus.UCSC.mm10.knownGene, showId=TRUE, geneSymbol=TRUE, name="", background.title="transparent") plotTracks(c(gax, collected, greg), chromosome=as.character(seqnames(cur.region)), from=start(cur.region), to=end(cur.region)) ``` Note that that the `gax` and `greg` objects are the same as those used in the visualization of the H3K9ac data. # Session information ```{r} sessionInfo() ``` # References