Differential expression for repeated measures (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 (Law et al. 2014). 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:
Dream also includes multi-threaded analysis across thousands of genes on a multi-core machine.
This tutorial assumes that the reader is familiar with the limma/voom workflow for RNA-seq. Process raw count data using limma/voom.
library('variancePartition')
library('edgeR')
library('BiocParallel')
data(varPartDEdata)
# filter genes by number of counts
isexpr = rowSums(cpm(countMatrix)>0.1) >= 5
# Standard usage of limma/voom
dge = DGEList( countMatrix[isexpr,] )
dge = calcNormFactors( dge )
# make this vignette faster by analyzing a subset of genes
dge = dge[1:1000,]
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.
# apply duplicateCorrelation is two rounds
design = model.matrix( ~ Disease, metadata)
vobj_tmp = voom( dge, design, plot=FALSE)
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( dge, design, plot=FALSE, block=metadata$Individual, correlation=dupcor$consensus)
# 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 )
The dream method replaces 4 core functions of limma with a linear mixed model.
voomWithDreamWeights()
replaces voom()
to estimate precision weightsdream()
replaces lmFit()
to estimate regression coefficients.variancePartition::eBayes()
replaces limma::eBayes()
to apply empircal Bayes shrinkage on linear mixed models.variancePartition::topTable()
replaces limma::topTable()
to give seamless access to results from dream()
.For models with only fixed effects, variancePartition::eBayes()
, and variancePartition::topTable()
work seamlessly and give results equivalent to the limma
functions with the same name. From the user perspective, the dream()
workflow is the same as limma
since the statistical differences are handled behind the scenes.
# Specify parallel processing parameters
# this is used implicitly by dream() to run in parallel
param = SnowParam(4, "SOCK", progressbar=TRUE)
# The variable to be tested must be a fixed effect
form <- ~ Disease + (1|Individual)
# estimate weights using linear mixed model of dream
vobjDream = voomWithDreamWeights( dge, form, metadata, BPPARAM=param )
# Fit the dream model on each gene
# By default, uses the Satterthwaite approximation for the hypothesis test
fitmm = dream( vobjDream, form, metadata )
fitmm = eBayes(fitmm)
## (Intercept) Disease1
## sample_01 1 0
## sample_02 1 0
## sample_03 1 0
# Get results of hypothesis test on coefficients of interest
topTable( fitmm, coef='Disease1', number=3 )
## logFC AveExpr t P.Value adj.P.Val B
## ENST00000283033.5 gene=TXNDC11 1.556233 3.567624 32.66731 1.934507e-21 1.934507e-18 38.78853
## ENST00000257181.9 gene=PRPF38A 1.380549 4.398270 24.57867 1.493752e-18 7.468762e-16 32.48845
## ENST00000525790.1 gene=TDRKH 1.508341 3.184931 19.32367 3.712009e-16 1.025502e-13 27.06759
## z.std
## ENST00000283033.5 gene=TXNDC11 9.508490
## ENST00000257181.9 gene=PRPF38A 8.790139
## ENST00000525790.1 gene=TDRKH 8.147606
Since dream uses an estimated degrees of freedom value for each hypothsis test, the degrees of freedom is different for each gene here. Therefore, the t-statistics are not directly comparable since they have different degrees of freedom. In order to be able to compare test statistics, we report z.std
which is the p-value transformed into a signed z-score. This can be used for downstream analysis.
Note that if a random effect is not specified, dream()
automatically uses lmFit()
, but the user must run eBayes()
afterward.
You can also perform a hypothesis test of the difference between two or more coefficients by using a contrast matrix. The contrasts are evaluated at the time of the model fit and the results can be extracted with topTable()
. This behaves like makeContrasts()
and contrasts.fit()
in limma.
Multiple contrasts can be evaluated at the same time, in order to save computation time. Make sure to inspect your contrast matrix to confirm it is testing what you intend.
form <- ~ 0 + DiseaseSubtype + Sex + (1|Individual)
L = makeContrastsDream( form, metadata,
contrasts = c(compare2_1 = "DiseaseSubtype2 - DiseaseSubtype1",
compare1_0 = "DiseaseSubtype1 - DiseaseSubtype0"))
# Visualize contrast matrix
plotContrasts(L)
# fit dream model with contrasts
fit = dream( vobjDream, form, metadata, L)
fit = eBayes(fit)
# get names of available coefficients and contrasts for testing
colnames(fit)
## [1] "compare2_1" "compare1_0" "DiseaseSubtype0" "DiseaseSubtype1" "DiseaseSubtype2"
## [6] "SexM"
## logFC AveExpr t P.Value adj.P.Val B
## ENST00000355624.3 gene=RAB11FIP2 -0.9493146 5.260280 -5.350355 2.247282e-05 0.02247282 0.8858848
## ENST00000593466.1 gene=DDA1 -1.7265709 3.901579 -3.664795 1.356933e-03 0.67846656 -1.5402274
## ENST00000200676.3 gene=CETP 1.4777422 3.723438 3.873141 4.030891e-03 0.99948566 -1.8241793
## z.std
## ENST00000355624.3 gene=RAB11FIP2 -4.238790
## ENST00000593466.1 gene=DDA1 -3.203659
## ENST00000200676.3 gene=CETP 2.875734
So far contrasts have only involved the difference between two coefficients. But contrasts can also compare any linear combination of coefficients. Here, consider comparing DiseaseSubtype0
to the mean of DiseaseSubtype1
and DiseaseSubtype2
. Note you can also customize the name of the contrast.
L2 = makeContrastsDream( form, metadata, contrasts =
c(Test1 = "DiseaseSubtype0 - (DiseaseSubtype1 + DiseaseSubtype2)/2"))
plotContrasts(L2)
# fit dream model to evaluate contrasts
fit = dream( vobjDream[1:10,], form, metadata, L=L2)
fit = eBayes(fit)
topTable(fit, coef="Test1", number=3)
## logFC AveExpr t P.Value adj.P.Val B
## ENST00000418210.2 gene=TMEM64 -1.0343236 4.715367 -7.000081 3.300014e-07 3.054318e-06 8.484493
## ENST00000456159.1 gene=MET -0.9830788 2.458926 -6.062227 6.108635e-07 3.054318e-06 5.836341
## ENST00000555834.1 gene=RPS6KL1 -0.8954794 5.272063 -5.450341 3.957530e-06 1.319177e-05 3.997353
## z.std
## ENST00000418210.2 gene=TMEM64 -5.105454
## ENST00000456159.1 gene=MET -4.987751
## ENST00000555834.1 gene=RPS6KL1 -4.613600
Joint hypothesis testing of multiple coefficients at the same time can be performed by using an F-test. Just like in limma, the results can be extracted using topTable()
# extract results from first contrast
topTable( fit, coef=c("DiseaseSubtype2", "DiseaseSubtype1"), number=3 )
## DiseaseSubtype2 DiseaseSubtype1 AveExpr F P.Value
## ENST00000418210.2 gene=TMEM64 5.301001 5.211674 4.715367 823.4482 3.966539e-23
## ENST00000555834.1 gene=RPS6KL1 5.662699 5.719196 5.272063 791.4322 6.389631e-23
## ENST00000589123.1 gene=NFIC 6.545195 6.181023 5.855335 651.9137 6.549272e-22
## adj.P.Val F.std
## ENST00000418210.2 gene=TMEM64 3.194815e-22 51.58156
## ENST00000555834.1 gene=RPS6KL1 3.194815e-22 51.10478
## ENST00000589123.1 gene=NFIC 2.183091e-21 48.77752
Since dream uses an estimated degrees of freedom value for each hypothsis test, the degrees of freedom is different for each gene here. Therefore, the F-statistics are not directly comparable since they have different degrees of freedom. In order to be able to compare test statistics, we report F.std
which is the p-value transformed into an F-statistic with \(df_1\) the number of coefficients tested and \(df_2=\infty\). This can be used for downstream analysis.
For small datasets, the Kenward-Roger method can be more powerful. But it is substantially more computationally intensive.
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.
Here we compare p-values from from dream()
and duplicateCorrelation
. In order to understand the empircal difference between them, we can plot the \(-\log_{10}\) p-values from each method.
# 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)
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\))
Note that using more variance components or a more complicated contrast matrix can make the relationship more complicated.
variancePartition functions including dream()
, fitExtractVarPartModel()
and fitVarPartModel()
can take advange of multicore machines to speed up analysis. It uses the BiocParallel package to manage the parallelization.
# Request 4 cores, and enable the progress bar
# This is the ideal for Linux, OS X and Windows
param = SnowParam(4, "SOCK", progressbar=TRUE)
fitmm = dream( vobjDream, form, metadata, BPPARAM=param)
By default BPPARAM = SerialParam()
.
## R version 4.3.0 RC (2023-04-13 r84269)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.2 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.17-bioc/R/lib/libRblas.so
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C LC_TIME=en_GB
## [4] LC_COLLATE=C LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C LC_ADDRESS=C
## [10] LC_TELEPHONE=C LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## time zone: America/New_York
## tzcode source: system (glibc)
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] edgeR_3.42.4 pander_0.6.5 variancePartition_1.30.2
## [4] BiocParallel_1.34.2 limma_3.56.2 ggplot2_3.4.2
## [7] knitr_1.43
##
## loaded via a namespace (and not attached):
## [1] tidyselect_1.2.0 farver_2.1.1 dplyr_1.1.2 bitops_1.0-7
## [5] fastmap_1.1.1 digest_0.6.31 lifecycle_1.0.3 statmod_1.5.0
## [9] magrittr_2.0.3 compiler_4.3.0 rlang_1.1.1 sass_0.4.6
## [13] progress_1.2.2 tools_4.3.0 utf8_1.2.3 yaml_2.3.7
## [17] clusterGeneration_1.3.7 labeling_0.4.2 prettyunits_1.1.1 plyr_1.8.8
## [21] KernSmooth_2.23-21 numDeriv_2016.8-1.1 withr_2.5.0 purrr_1.0.1
## [25] BiocGenerics_0.46.0 grid_4.3.0 aod_1.3.2 fansi_1.0.4
## [29] caTools_1.18.2 colorspace_2.1-0 scales_1.2.1 gtools_3.9.4
## [33] iterators_1.0.14 MASS_7.3-60 cli_3.6.1 mvtnorm_1.2-1
## [37] rmarkdown_2.22 crayon_1.5.2 generics_0.1.3 reshape2_1.4.4
## [41] RUnit_0.4.32 minqa_1.2.5 cachem_1.0.8 stringr_1.5.0
## [45] splines_4.3.0 parallel_4.3.0 vctrs_0.6.2 boot_1.3-28.1
## [49] Matrix_1.5-4.1 jsonlite_1.8.5 hms_1.1.3 pbkrtest_0.5.2
## [53] locfit_1.5-9.7 foreach_1.5.2 tidyr_1.3.0 jquerylib_0.1.4
## [57] snow_0.4-4 glue_1.6.2 nloptr_2.0.3 codetools_0.2-19
## [61] stringi_1.7.12 gtable_0.3.3 lme4_1.1-33 lmerTest_3.1-3
## [65] munsell_0.5.0 tibble_3.2.1 remaCor_0.0.11 pillar_1.9.0
## [69] htmltools_0.5.5 gplots_3.1.3 R6_2.5.1 Rdpack_2.4
## [73] doParallel_1.0.17 evaluate_0.21 lattice_0.21-8 Biobase_2.60.0
## [77] highr_0.10 rbibutils_2.2.13 backports_1.4.1 RhpcBLASctl_0.23-42
## [81] broom_1.0.4 bslib_0.4.2 Rcpp_1.0.10 nlme_3.1-162
## [85] xfun_0.39 pkgconfig_2.0.3
<>
Law, C. W., Y. Chen, W. Shi, and G. K. Smyth. 2014. “Voom: precision weights unlock linear model analysis tools for RNA-seq read counts.” Genome Biology 15 (2): R29. https://doi.org/10.1186/gb-2014-15-2-r29.