--- title: "dream: Differential expression testing with linear mixed models for repeated measures" author: "[Gabriel Hoffman](http://gabrielhoffman.github.io)" date: "`r format(Sys.Date(), '%m/%d/%Y')`" abstract: > **D**ifferential expression for **re**pe**a**ted **m**easures (dream) uses a linear model model to increase power and decrease false positives for RNA-seq datasets with multiple measurements per individual. The analysis fits seamlessly into the widely used workflow of limma/voom [@Law2014].

Dream uses a linear model model to increase power and decrease false positives for RNA-seq datasets with repeated measurements. Dream achieves this by combining multiple statistical concepts into a single statistical model. The model includes:
- flexible modeling of repeated measures gene expression data
- precision weights to model measurement error in RNA-seq counts
- ability to model multiple random effects
- random effects estimated separately for each gene
- hypothesis testing for fixed effects in linear mixed models
- small sample size hypothesis test
- emprical Bayes moderated t-test

Dream also includes multi-threaded analysis across thousands of genes on a multi-core machine.

variancePartition v`r packageVersion("variancePartition")`

output: rmarkdown::html_document: highlight: pygments toc: true toc_depth: 3 fig_width: 5 bibliography: library.bib vignette: > %\VignetteIndexEntry{4) Differential expression testing with repeated measures designs} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} %\usepackage[utf8]{inputenc} --- ```{r setup, echo=FALSE, results="hide"} knitr::opts_chunk$set(tidy=FALSE, cache=TRUE, dev="png", message=FALSE, error=FALSE, warning=TRUE) options(width=100) ``` # Standard RNA-seq processing This tutorial assumes that the reader is familiar with the limma/voom workflow for RNA-seq. Process raw count data using limma/voom. ```{r preprocess, eval=TRUE} library('variancePartition') library('edgeR') library('doParallel') data(varPartDEdata) isexpr = rowSums(cpm(countMatrix)>0.1) >= 3 # Standard usage of limma/voom genes = DGEList( countMatrix ) genes = calcNormFactors( genes ) design = model.matrix( ~ Disease, metadata) vobj_tmp = voom( genes, design, plot=FALSE) # apply duplicateCorrelation dupcor <- duplicateCorrelation(vobj_tmp,design,block=metadata$Individual) # run voom considering the duplicateCorrelation results # in order to compute more accurate precision weights # Otherwise, use the results from the first voom run vobj = voom( genes, design, plot=FALSE, block=metadata$Individual, correlation=dupcor$consensus) ``` # Limma Analysis Limma has a built-in approach for analyzing repeated measures data using duplicateCorrelation. The model can handle a single random effect, and forces the magnitude of the random effect to be the same across all genes. ```{r dupCor, eval=TRUE} design = model.matrix( ~ Disease, metadata) # Estimate linear mixed model with a single variance component # Fit the model for each gene, dupcor <- duplicateCorrelation(vobj, design, block=metadata$Individual) # But this step uses only the genome-wide average for the random effect fitDupCor <- lmFit(vobj, design, block=metadata$Individual, correlation=dupcor$consensus) # Fit Empirical Bayes for moderated t-statistics fitDupCor <- eBayes( fitDupCor ) ``` # Dream Analysis The dream model operates directly on the results of voom. The only change compared to the standard limma workflow is to replace lmFit with dream. ```{r lmm, eval=TRUE, message=FALSE} cl <- makeCluster(4) registerDoParallel(cl) # The variable to be tested should be a fixed effect form <- ~ Disease + (1|Individual) # Get the contrast matrix for the hypothesis test L = getContrast( vobj, form, metadata, "Disease1") # Fit the dream model on each gene # Apply the contrast matrix L for the hypothesis test # By default, uses the Satterthwaite approximation for the hypothesis test fitmm = dream( vobj, form, metadata, L) # Fit Empirical Bayes for moderated t-statistics fitmm = eBayes( fitmm ) # get results topTable( fitmm ) ``` Note that if random effect is not specified, dream() automatically uses lmFit(). ### Small-sample method For small datasets, the Kenward-Roger method can be more powerful. But it is **substantially** more computationally intensive. ```{r kr, eval=FALSE} fitmmKR = dream( vobj[1:10,], form, metadata, L, ddf="Kenward-Roger") ``` ### Advanced use of contrasts You can also perform a hypothesis test between two levels. Make sure to inspect your contrast matrix to confirm it is testing what you intend. ```{r contrast, eval=TRUE} form <- ~ 0 + Disease + (1|Individual) L = getContrast( vobj, form, metadata, c("Disease1", "Disease0")) L ``` Multiple contrasts can be evaluated at the same time, in order to save computation time: ```{r contrast.combine} form <- ~ 0 + Disease + (1|Individual) # define and then cbind contrasts L1 = getContrast( vobj, form, metadata, "Disease0") L2 = getContrast( vobj, form, metadata, "Disease1") L = cbind(L1, L2) # fit both contrasts fit = dream( vobj[1:10,], form, metadata, L) # empirical Bayes step fiteb = eBayes( fit ) # extract results from first contrast topTable( fiteb, coef="L1" ) ``` ## variancePartition plot Dream and variancePartition share the same underlying linear mixed model framework. A variancePartition analysis can indicate important variables that should be included as fixed or random effects in the dream analysis. ```{r vp} form = ~ (1|Individual) + (1|Disease) vp = fitExtractVarPartModel( vobj, form, metadata) plotVarPart( sortCols(vp)) ``` ## Compare p-values from dream and duplicateCorrelation In order to understand the empircal difference between dream and duplication correlation, we can plot the $-\log_{10}$ p-values from both methods. The duplicateCorrelation method estimates a single variance term genome-wide even though the donor contribution of a particular gene can vary substantially from the genome-wide trend. Using a single value genome-wide for the within-donor variance can reduce power and increase the false positive rate in a particular, reproducible way. Let $\tau^2_g$ be the value of the donor component for gene $g$ and $\bar{\tau}^2$ be the genome-wide mean. For genes where $\tau^2_g>\bar{\tau}^2$, using $\bar{\tau}^2$ under-corrects for the donor component so that it increases the false positive rate compared to using $\tau^2_g$. Conversely, for genes where $\tau^2_g<\bar{\tau}^2$, using $\bar{\tau}^2$ over-corrects for the donor component so that it decreases power. Increasing sample size does not overcome this issue. The dream method overcomes this issue by using a $\tau^2_g$. Here, the $-\log_{10}$ p-values from both methods are plotted and colored by the donor contribution estiamted by variancePartition. The green value indicates $\bar{\tau}^2$, while red and blue indicate higher and lower values, respectively. When only one variance component is used and the contrast matrix is simple, the effect of using dream versus duplicateCorrelation is determined by the comparison of $\tau^2_g$ to $\bar{\tau}^2$: dream can increase the $-\log_{10}$ p-value for genes with a lower donor component (i.e. $\tau^2_g<\bar{\tau}^2$) and decrease $-\log_{10}$ p-value for genes with a higher donor component (i.e. $\tau^2_g>\bar{\tau}^2$) ```{r define} # Compare p-values and make plot p1 = topTable(fitDupCor, coef="Disease1", number=Inf, sort.by="none")$P.Value p2 = topTable(fitmm, number=Inf, sort.by="none")$P.Value plotCompareP( p1, p2, vp$Individual, dupcor$consensus) ``` Note that using more variance components or a more complicated contrast matrix can make the relationship more complicated. # Session info ```{r sessionInfo} sessionInfo() ``` # References