Icahn School of Medicine at Mount Sinai, New York
zenith
performs gene set analysis on the result of differential expression using linear (mixed) modeling with dream by considering the correlation between gene expression traits. This package implements the camera method from the limma package proposed by Wu and Smyth (2012). zenith()
is a simple extension of camera()
to be compatible with linear (mixed) models implemented in dream()
.
# Load packages
library(zenith)
library(edgeR)
library(variancePartition)
library(tweeDEseqCountData)
library(kableExtra)
# Load RNA-seq data from LCL's
data(pickrell)
geneCounts = exprs(pickrell.eset)
df_metadata = pData(pickrell.eset)
# Filter genes
# Note this is low coverage data, so just use as code example
dsgn = model.matrix(~ gender, df_metadata)
keep = filterByExpr(geneCounts, dsgn, min.count=5)
# Compute library size normalization
dge = DGEList(counts = geneCounts[keep,])
dge = calcNormFactors(dge)
# Estimate precision weights using voom
vobj = voomWithDreamWeights(dge, ~ gender, df_metadata)
# Apply dream analysis
fit = dream(vobj, ~ gender, df_metadata)
fit = eBayes(fit)
# Load get_MSigDB database, Hallmark genes
# use gene 'SYMBOL', or 'ENSEMBL' id
# use get_GeneOntology() to load Gene Ontology
msdb.gs = get_MSigDB("H", to="ENSEMBL")
# Run zenith analysis, and specific which coefficient to evaluate
res.gsa = zenith_gsa(fit, msdb.gs, 'gendermale', progressbar=FALSE )
# Show top gene sets: head(res.gsa)
kable_styling(kable(head(res.gsa), row.names=FALSE))
coef | Geneset | NGenes | Correlation | delta | se | p.less | p.greater | PValue | Direction | FDR |
---|---|---|---|---|---|---|---|---|---|---|
gendermale | M5890_HALLMARK_TNFA_SIGNALING_VIA_NFKB | 118 | 0.01 | -0.9999389 | 0.1621467 | 0.0000000 | 1.0000000 | 0.0000000 | Down | 0.0000021 |
gendermale | M5892_HALLMARK_CHOLESTEROL_HOMEOSTASIS | 37 | 0.01 | -1.0915363 | 0.2296170 | 0.0000055 | 0.9999945 | 0.0000110 | Down | 0.0002582 |
gendermale | M5932_HALLMARK_INFLAMMATORY_RESPONSE | 93 | 0.01 | -0.7819360 | 0.1722474 | 0.0000120 | 0.9999880 | 0.0000241 | Down | 0.0003769 |
gendermale | M5947_HALLMARK_IL2_STAT5_SIGNALING | 105 | 0.01 | -0.6493291 | 0.1672385 | 0.0001194 | 0.9998806 | 0.0002389 | Down | 0.0028066 |
gendermale | M5930_HALLMARK_EPITHELIAL_MESENCHYMAL_TRANSITION | 53 | 0.01 | -0.6136470 | 0.2031832 | 0.0017867 | 0.9982133 | 0.0035735 | Down | 0.0335905 |
gendermale | M5925_HALLMARK_E2F_TARGETS | 109 | 0.01 | 0.4817527 | 0.1659106 | 0.9975051 | 0.0024949 | 0.0049898 | Up | 0.0355160 |
# for each cell type select 3 genesets with largest t-statistic
# and 1 geneset with the lowest
# Grey boxes indicate the gene set could not be evaluted because
# to few genes were represented
plotZenithResults(res.gsa)
## R version 4.3.2 (2023-10-31)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.3 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.18-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
## [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] stats4 stats graphics grDevices utils datasets methods
## [8] base
##
## other attached packages:
## [1] org.Hs.eg.db_3.18.0 AnnotationDbi_1.64.1
## [3] IRanges_2.36.0 S4Vectors_0.40.1
## [5] msigdbr_7.5.1 kableExtra_1.3.4
## [7] tweeDEseqCountData_1.40.0 Biobase_2.62.0
## [9] BiocGenerics_0.48.1 variancePartition_1.32.1
## [11] BiocParallel_1.36.0 ggplot2_3.4.4
## [13] edgeR_4.0.1 zenith_1.4.2
## [15] limma_3.58.1 knitr_1.45
##
## loaded via a namespace (and not attached):
## [1] rstudioapi_0.15.0 jsonlite_1.8.7
## [3] magrittr_2.0.3 farver_2.1.1
## [5] nloptr_2.0.3 rmarkdown_2.25
## [7] zlibbioc_1.48.0 vctrs_0.6.4
## [9] memoise_2.0.1 minqa_1.2.6
## [11] RCurl_1.98-1.13 webshot_0.5.5
## [13] htmltools_0.5.7 S4Arrays_1.2.0
## [15] progress_1.2.2 curl_5.1.0
## [17] broom_1.0.5 SparseArray_1.2.2
## [19] sass_0.4.7 KernSmooth_2.23-22
## [21] bslib_0.5.1 pbkrtest_0.5.2
## [23] plyr_1.8.9 cachem_1.0.8
## [25] lifecycle_1.0.4 iterators_1.0.14
## [27] pkgconfig_2.0.3 Matrix_1.6-1.1
## [29] R6_2.5.1 fastmap_1.1.1
## [31] GenomeInfoDbData_1.2.11 rbibutils_2.2.16
## [33] MatrixGenerics_1.14.0 digest_0.6.33
## [35] numDeriv_2016.8-1.1 colorspace_2.1-0
## [37] GenomicRanges_1.54.1 RSQLite_2.3.3
## [39] labeling_0.4.3 filelock_1.0.2
## [41] RcppZiggurat_0.1.6 fansi_1.0.5
## [43] httr_1.4.7 abind_1.4-5
## [45] compiler_4.3.2 withr_2.5.2
## [47] bit64_4.0.5 aod_1.3.2
## [49] backports_1.4.1 DBI_1.1.3
## [51] highr_0.10 gplots_3.1.3
## [53] MASS_7.3-60 DelayedArray_0.28.0
## [55] corpcor_1.6.10 gtools_3.9.4
## [57] caTools_1.18.2 tools_4.3.2
## [59] remaCor_0.0.16 glue_1.6.2
## [61] nlme_3.1-163 grid_4.3.2
## [63] reshape2_1.4.4 generics_0.1.3
## [65] gtable_0.3.4 tidyr_1.3.0
## [67] hms_1.1.3 xml2_1.3.5
## [69] utf8_1.2.4 XVector_0.42.0
## [71] pillar_1.9.0 stringr_1.5.0
## [73] babelgene_22.9 splines_4.3.2
## [75] dplyr_1.1.3 BiocFileCache_2.10.1
## [77] lattice_0.22-5 bit_4.0.5
## [79] annotate_1.80.0 tidyselect_1.2.0
## [81] locfit_1.5-9.8 Biostrings_2.70.1
## [83] SummarizedExperiment_1.32.0 svglite_2.1.2
## [85] RhpcBLASctl_0.23-42 xfun_0.41
## [87] statmod_1.5.0 matrixStats_1.1.0
## [89] KEGGgraph_1.62.0 stringi_1.7.12
## [91] yaml_2.3.7 boot_1.3-28.1
## [93] evaluate_0.23 codetools_0.2-19
## [95] tibble_3.2.1 Rgraphviz_2.46.0
## [97] graph_1.80.0 cli_3.6.1
## [99] RcppParallel_5.1.7 systemfonts_1.0.5
## [101] xtable_1.8-4 Rdpack_2.5
## [103] munsell_0.5.0 jquerylib_0.1.4
## [105] Rcpp_1.0.11 GenomeInfoDb_1.38.0
## [107] EnvStats_2.8.1 dbplyr_2.4.0
## [109] png_0.1-8 XML_3.99-0.15
## [111] parallel_4.3.2 Rfast_2.0.9
## [113] blob_1.2.4 prettyunits_1.2.0
## [115] bitops_1.0-7 lme4_1.1-35.1
## [117] viridisLite_0.4.2 mvtnorm_1.2-3
## [119] GSEABase_1.64.0 lmerTest_3.1-3
## [121] scales_1.2.1 purrr_1.0.2
## [123] crayon_1.5.2 fANCOVA_0.6-1
## [125] rlang_1.1.2 rvest_1.0.3
## [127] EnrichmentBrowser_2.32.0 KEGGREST_1.42.0