dearseq
R packagedearseq
dearseq
is an R
package that performs Differential Expression Analysis of RNA-seq data, while guaranteeing a sound control of false positives (Gauthier et al., 2019). It relies on variance component score test accounting for data heteroscedasticity through precision weights, not unlike voom
(Law et al., 2014). It can perform either
In addition, dearseq
can deal with various and complex experimental designs such as:
More details are provided Gauthier M, Agniel D, Thiébaut R & Hejblum BP (2020). dearseq: a variance component score test for RNA-Seq differential analysis that effectively controls the false discovery rate, NAR Genomics and Bioinformatics, 2(4):lqaa093.
DOI: 10.1093/nargab/lqaa093
dearseq
for a gene-wise analysisdear_seq()
Two inputs are required to run dear_seq()
:
Both can be supplied in the formed of a SummarizedExperiment
object for instance. A third optional input is the covariates that will be adjusted on (such as age for instance).
Tuberculosis (TB) is a disease caused by a bacterium called Mycobacterium tuberculosis. Bacteria typically infect the lungs, but they can also affect other parts of the body. Tuberculosis can remain in a quiescent state in the body. It is called latent tuberculosis infection (LTBI). It is an infection without clinical signs, bacteriological and radiological disease.
Berry et al. first identified a whole blood 393 transcript signature for active TB using microarray analysis. Then, Singhania et al. found a 373-genes signature of active tuberculosis using RNA-Seq, confirming microarray results, that discriminates active tuberculosis from latently infected and healthy individuals.
We sought to investigate how many of the 373 genes Singhania et al. found using edgeR might actually be false positives. As a quick example, we propose a partial re-analysis (see Gauthier et al. for the complete analysis) of the Singhania et al. dataset: we proceed to the Differential Expression Analysis (DEA) of the Active TB group against the Control one, omitting LTBI/Control and ActiveTB/LTBI comparisons. We focused on the Berry London dataset.
It results in 54 patients of whom 21 are active TB patients, 21 are latent TB patients and 12 are healthy control particiants.
For more details, check the article from Berry et al., 2010 here.
Data from Singhania et al. inverstigating active TB are publicly available on GEO website with GEO access number ‘GSE107995’. Thanks to the GEOquery
package to get the data files from GEO website (see appendix for more details on GEOquery
)
library(GEOquery)
GSE107991_metadata <- GEOquery::getGEO("GSE107991", GSEMatrix = FALSE)
get_info <- function(i) {
name <- GEOquery::Meta(GSMList(GSE107991_metadata)[[i]])$source_name_ch1
name <- gsub("Active_TB", "ActiveTB", name)
name <- gsub("Test_set", "TestSet", name)
c(unlist(strsplit(name, split = "_")), GEOquery::Meta(GSMList(GSE107991_metadata)[[i]])$title)
}
infos <- vapply(X = 1:length(GSMList(GSE107991_metadata)), FUN = get_info, FUN.VALUE = c("a",
"b", "c", "d", "e"))
infos_df <- cbind.data.frame(SampleID = names(GSMList(GSE107991_metadata)), t(infos),
stringsAsFactors = TRUE)
rownames(infos_df) <- names(GEOquery::GSMList(GSE107991_metadata))
colnames(infos_df)[-1] <- c("Cohort", "Location", "Set", "Status", "SampleTitle")
This matrix contains the gene expression (in cells) for each gene (in rows) of each sample (in columns) gathered from RNA-seq measurements. The gene expression could already be normalized, or not (e.g. raw counts or pseudo-counts straight from the alignment). In the latter case, the gene expression is normalized then into log(counts) per million (i.e. log-cpm).
The gene expression matrix (called London
) is including in the package dearseq
. It was extracted from one of the GEO supplementary files (namely the “GSE107991_edgeR_normalized_Berry_London.xlsx” file).
NB: These expression data have already been already normalized using edgeR
library(readxl)
GEOquery::getGEOSuppFiles("GSE107991", filter_regex = "edgeR_normalized_Berry_London")
London <- readxl::read_excel("GSE107991/GSE107991_edgeR_normalized_Berry_London.xlsx")
genes <- London$Genes
London <- as.matrix(London[, -c(1:3)])
rownames(London) <- genes
We have nrow(London)
genes in rows and ncol(London)
samples in columns * rownames are Ensembl IDs ENSGxxxxxxxxxxx
for each gene (saved in genes
) * colnames are the name of each sample Berry_London_Samplex
* each data-cell contains the normalized gene expression
The vector genes
contains all the gene identifiers.
dearseq
variance component score testThe main arguments to the dear_seq()
function are:
exprmat
: a numeric matrix containing the raw RNA-seq counts or preprocessed expressionscovariates
: a numeric matrix containing the model covariates that needs to be adjusted. Usually, its first column is the intercept (full of 1s).variables2test
: a numeric design matrix containing the variables of interest (with whom the expression association is tested)which_test
: a character string indicating which method to use to approximate the variance component score test, either “permutation” or “asymptotic”.preprocessed
: a logical flag indicating whether the expression data have already been preprocessed (e.g. log2 transformed). Default is FALSE, in which case y is assumed to contain raw counts and is normalized into log(counts) per million.We use the permutation test because of the relatively small sample size (\(n=33\)).
library(dearseq)
library(SummarizedExperiment)
col_data <- data.frame(Status = infos_df$Status)
col_data$Status <- stats::relevel(col_data$Status, ref = "Control")
rownames(col_data) <- infos_df$SampleTitle
se <- SummarizedExperiment(assays = London, colData = col_data)
res_dearseq <- dearseq::dear_seq(object = se[, se$Status != "LTBI"], variables2test = "Status",
which_test = "asymptotic", preprocessed = TRUE)
summary(res_dearseq)
#> dearseq identifies 3882 significant genes out of 14150
#> - test: asymptotic
#> - FDR significance level: 0.05
plot(res_dearseq)
res_dearseq
is a list containing:
which_test
, nperm
and preprocessed
NB: We excluded the LTBI patients to focus on the comparison between Active TB versus Control patients.
If the gene expression could not already be normalized, the gene expression is normalized then into log(counts) per million (i.e. log-cpm). We set preprocessed
equal to FALSE, the default parameter to normalize the raw counts.
The matrix of raw counts (Raw_counts_Berry_London) contains \(58,051\) genes and \(54\) samples. As described in Singhania et al., only genes expressed with counts per million (CPM) \(> 2\) in at least five samples were considered. The filtering is carried out with edgeR
. It results in a matrix of raw counts containing \(14,150\) genes and \(54\) samples (London_raw). Of note, many filtering and normalization methods may be considered and the user must be cautious applying them.
library(readxl)
library(edgeR)
GEOquery::getGEOSuppFiles("GSE107991", filter_regex = "Raw_counts_Berry_London")
London_raw <- readxl::read_excel("GSE107991/GSE107991_Raw_counts_Berry_London.xlsx")
genes_raw <- London_raw$Genes
London_raw <- as.matrix(London_raw[, -c(1:3)])
se_raw <- SummarizedExperiment(assays = London_raw, colData = col_data)
group <- ifelse(se_raw$Status == "ActiveTB", 1, 0)
dgList <- DGEList(counts = London_raw, group = group)
cpm <- cpm(dgList)
countCheck <- cpm > 2
keep <- which(rowSums(countCheck) >= 5)
London_raw <- London_raw[keep, ]
res_dearseq <- dearseq::dear_seq(object = se_raw[, se_raw$Status != "LTBI"], variables2test = "Status",
which_test = "permutation", preprocessed = FALSE)
summary(res_dearseq)
plot(res_dearseq)
dearseq
for gene-set analysisHere we will use a subsample of the RNA-seq data from Baduel et al. (2016) studying Arabidopsis Arenosa physiology, that is included in the dearseq
package.
We investigates 2 gene sets that were derived in a data-driven manner By Baduel et al. (2016).
library(dearseq)
library(SummarizedExperiment)
library(BiocSet)
data("baduel_5gs")
se2 <- SummarizedExperiment(assay = log2(expr_norm_corr + 1), colData = design)
genes_non0var_ind <- which(matrixStats::rowVars(expr_norm_corr) != 0)
KAvsTBG <- dearseq::dgsa_seq(object = se2[genes_non0var_ind, ], covariates = c("Vernalized",
"AgeWeeks", "Vernalized_Population", "AgeWeeks_Population"), variables2test = "PopulationKA",
genesets = baduel_gmt$genesets[c(3, 5)], which_test = "permutation", which_weights = "loclin",
n_perm = 2000, preprocessed = TRUE, verbose = FALSE)
summary(KAvsTBG)
#> dearseq identifies 1 significant genes sets out of 2
#> - test: permutation
#> - FDR significance level: 0.05
KAvsTBG$pvals
#> rawPval adjPval
#> VR_TBG 0.918040980 0.9180410
#> DE_KAvsTBG 0.008495752 0.0169915
Cold <- dearseq::dgsa_seq(object = se2[genes_non0var_ind, ], covariates = c("AgeWeeks",
"PopulationKA", "AgeWeeks_Population"), variables2test = c("Vernalized", "Vernalized_Population"),
genesets = baduel_gmt$genesets[c(3, 5)], which_test = "permutation", which_weights = "loclin",
n_perm = 2000, preprocessed = TRUE, verbose = FALSE)
summary(Cold)
#> dearseq identifies 2 significant genes sets out of 2
#> - test: permutation
#> - FDR significance level: 0.05
Cold$pvals
#> rawPval adjPval
#> VR_TBG 0.01949025 0.03898051
#> DE_KAvsTBG 0.03898051 0.03898051
Agniel D & Hejblum BP (2017). Variance component score test for time-course gene set analysis of longitudinal RNA-seq data. Biostatistics 18(4):589-604. DOI: 10.1093/biostatistics/kxx005.
Baduel P, Arnold B, Weisman CM, Hunter B & Bomblies K (2016). Habitat-Associated Life History and Stress-Tolerance Variation in Arabidopsis Arenosa. Plant Physiology, 171(1):437-51. DOI: 10.1104/pp.15.01875.
Berry MP, Graham CM, McNab FW, Xu Z, Bloch SAA, Oni T, Wilkinson KA, Banchereau R, Skinner J, Wilkinson RJ, Quinn C, Blankenship D, Dhawan R, Cush JJ, Mejias A, Ramilo O, Kon OM, Pascual V, Banchereau J, Chaussabel D & O’Garra A (2010). An interferon-inducible neutrophil-driven blood transcriptional signature in human tuberculosis. Nature 466:973–977. DOI: 10.1038/nature09247
Gauthier M, Agniel D, Thiébaut R & Hejblum BP (2020). dearseq: a variance component score test for RNA-Seq differential analysis that effectively controls the false discovery rate. NAR Genomics and Bioinformatics, 2(4):lqaa093. DOI: 10.1093/nargab/lqaa093
Singhania A, Verma R, Graham CM, Lee J, Tran T, Richardson M, Lecine P, Leissner P, Berry MPR, Wilkinson RJ, Kaiser K, Rodrigue M, Woltmann G, Haldar P, O’Garra A, (2018). A modular transcriptional signature identifies phenotypic heterogeneity of human tuberculosis infection. Nature communications 9(1):2308. DOI: 10.1038/s41467-018-04579-w
GEOquery
packageIn case the data you want to analyze is publicly available through Gene Expression Omnibus (GEO), you can access it with the GEOquery
package, that can be installed with the following commands:
readxl
The readxl
package allows to easily imports data from Excel format and can be similarly installed with the following commands:
More details can be found on Bioconductor and in Davis S, Meltzer P, (2007) GEOquery: a bridge between the Gene Expression Omnibus (GEO) and Bioconductor Bioinformatics 14:1846-1847.
#> R version 4.1.1 (2021-08-10)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.3 LTS
#>
#> Matrix products: default
#> BLAS: /home/biocbuild/bbs-3.14-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.14-bioc/R/lib/libRlapack.so
#>
#> 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
#>
#> attached base packages:
#> [1] stats4 stats graphics grDevices utils datasets methods
#> [8] base
#>
#> other attached packages:
#> [1] BiocSet_1.8.0 dplyr_1.0.7
#> [3] edgeR_3.36.0 limma_3.50.0
#> [5] SummarizedExperiment_1.24.0 GenomicRanges_1.46.0
#> [7] GenomeInfoDb_1.30.0 IRanges_2.28.0
#> [9] S4Vectors_0.32.0 MatrixGenerics_1.6.0
#> [11] matrixStats_0.61.0 dearseq_1.6.0
#> [13] readxl_1.3.1 GEOquery_2.62.0
#> [15] Biobase_2.54.0 BiocGenerics_0.40.0
#>
#> loaded via a namespace (and not attached):
#> [1] bitops_1.0-7 bit64_4.0.5 httr_1.4.2
#> [4] tools_4.1.1 bslib_0.3.1 utf8_1.2.2
#> [7] R6_2.5.1 KernSmooth_2.23-20 DBI_1.1.1
#> [10] colorspace_2.0-2 tidyselect_1.1.1 ontologyIndex_2.7
#> [13] bit_4.0.4 curl_4.3.2 compiler_4.1.1
#> [16] formatR_1.11 xml2_1.3.2 DelayedArray_0.20.0
#> [19] labeling_0.4.2 sass_0.4.0 scales_1.1.1
#> [22] readr_2.0.2 pbapply_1.5-0 stringr_1.4.0
#> [25] digest_0.6.28 rmarkdown_2.11 R.utils_2.11.0
#> [28] XVector_0.34.0 pkgconfig_2.0.3 htmltools_0.5.2
#> [31] fastmap_1.1.0 highr_0.9 rlang_0.4.12
#> [34] RSQLite_2.2.8 BiocIO_1.4.0 jquerylib_0.1.4
#> [37] generics_0.1.1 farver_2.1.0 jsonlite_1.7.2
#> [40] R.oo_1.24.0 RCurl_1.98-1.5 magrittr_2.0.1
#> [43] GenomeInfoDbData_1.2.7 patchwork_1.1.1 Matrix_1.3-4
#> [46] Rcpp_1.0.7 munsell_0.5.0 fansi_0.5.0
#> [49] lifecycle_1.0.1 R.methodsS3_1.8.1 stringi_1.7.5
#> [52] yaml_2.2.1 zlibbioc_1.40.0 plyr_1.8.6
#> [55] grid_4.1.1 blob_1.2.2 parallel_4.1.1
#> [58] crayon_1.4.1 lattice_0.20-45 Biostrings_2.62.0
#> [61] splines_4.1.1 KEGGREST_1.34.0 hms_1.1.1
#> [64] locfit_1.5-9.4 knitr_1.36 pillar_1.6.4
#> [67] glue_1.4.2 evaluate_0.14 mitools_2.4
#> [70] data.table_1.14.2 png_0.1-7 vctrs_0.3.8
#> [73] tzdb_0.1.2 cellranger_1.1.0 gtable_0.3.0
#> [76] purrr_0.3.4 tidyr_1.1.4 assertthat_0.2.1
#> [79] cachem_1.0.6 ggplot2_3.3.5 xfun_0.27
#> [82] survey_4.1-1 survival_3.2-13 viridisLite_0.4.0
#> [85] tibble_3.1.5 AnnotationDbi_1.56.0 memoise_2.0.0
#> [88] statmod_1.4.36 ellipsis_0.3.2