1 Basic edgeR results exploration

Project: edgeR-example.

2 Introduction

This report is meant to help explore edgeR (Chen, Chen, Lun, Baldoni, and Smyth, 2025) results and was generated using the regionReport (Collado-Torres, Jaffe, and Leek, 2016) package. While the report is rich, it is meant to just start the exploration of the results and exemplify some of the code used to do so. If you need a more in-depth analysis for your specific data set you might want to use the customCode argument. This report is based on the vignette of the DESeq2 (Love, Huber, and Anders, 2014) package which you can find here.

2.1 Code setup

This section contains the code for setting up the rest of the report.

## knitrBoostrap and device chunk options
library('knitr')
opts_chunk$set(bootstrap.show.code = FALSE, dev = device, crop = NULL)
if(!outputIsHTML) opts_chunk$set(bootstrap.show.code = FALSE, dev = device, echo = FALSE)
#### Libraries needed

## Bioconductor
library('DESeq2')
if(isEdgeR) library('edgeR')

## CRAN
library('ggplot2')
if(!is.null(theme)) theme_set(theme)
library('knitr')
if(is.null(colors)) {
    library('RColorBrewer')
}
library('pheatmap')
library('DT')
library('sessioninfo')

#### Code setup

## For ggplot
res.df <- as.data.frame(res)

## Sort results by adjusted p-values
ord <- order(res.df$padj, decreasing = FALSE)
res.df <- res.df[ord, ]
features <- rownames(res.df)
res.df <- cbind(data.frame(Feature = features), res.df)
rownames(res.df) <- NULL

3 PCA

## Transform count data
rld <- tryCatch(rlog(dds), error = function(e) { rlog(dds, fitType = 'mean') })

## Perform PCA analysis and make plot
plotPCA(rld, intgroup = intgroup)
## using ntop=500 top features by variance

## Get percent of variance explained
data_pca <- plotPCA(rld, intgroup = intgroup, returnData = TRUE)
## using ntop=500 top features by variance
percentVar <- round(100 * attr(data_pca, "percentVar"))

The above plot shows the first two principal components that explain the variability in the data using the regularized log count data. If you are unfamiliar with principal component analysis, you might want to check the Wikipedia entry or this interactive explanation. In this case, the first and second principal component explain 23 and 21 percent of the variance respectively.

4 Sample-to-sample distances

## Obtain the sample euclidean distances
sampleDists <- dist(t(assay(rld)))
sampleDistMatrix <- as.matrix(sampleDists)
## Add names based on intgroup
rownames(sampleDistMatrix) <- apply(as.data.frame(colData(rld)[, intgroup]), 1,
    paste, collapse = ' : ')
colnames(sampleDistMatrix) <- NULL

## Define colors to use for the heatmap if none were supplied
if(is.null(colors)) {
    colors <- colorRampPalette( rev(brewer.pal(9, "Blues")) )(255)
}

## Make the heatmap
pheatmap(sampleDistMatrix, clustering_distance_rows = sampleDists,
    clustering_distance_cols = sampleDists, color = colors)

This plot shows how samples are clustered based on their euclidean distance using the regularized log transformed count data. This figure gives an overview of how the samples are hierarchically clustered. It is a complementary figure to the PCA plot.

5 MA plots

This section contains three MA plots (see Wikipedia) that compare the mean of the normalized counts against the log fold change. They show one point per feature. The points are shown in red if the feature has an adjusted p-value less than alpha, that is, the statistically significant features are shown in red.

## MA plot with alpha used in DESeq2::results()
plotMA(res, alpha = metadata(res)$alpha, main = paste('MA plot with alpha =',
    metadata(res)$alpha))
## Warning in plot.window(...): "alpha" is not a graphical parameter
## Warning in plot.xy(xy, type, ...): "alpha" is not a graphical parameter
## Warning in axis(side = side, at = at, labels = labels, ...): "alpha" is not a graphical parameter
## Warning in axis(side = side, at = at, labels = labels, ...): "alpha" is not a graphical parameter
## Warning in box(...): "alpha" is not a graphical parameter
## Warning in title(...): "alpha" is not a graphical parameter

This first plot shows uses alpha = 0.1, which is the alpha value used to determine which resulting features were significant when running the function DESeq2::results().

## MA plot with alpha = 1/2 of the alpha used in DESeq2::results()
plotMA(res, alpha = metadata(res)$alpha / 2,
    main = paste('MA plot with alpha =', metadata(res)$alpha / 2))
## Warning in plot.window(...): "alpha" is not a graphical parameter
## Warning in plot.xy(xy, type, ...): "alpha" is not a graphical parameter
## Warning in axis(side = side, at = at, labels = labels, ...): "alpha" is not a graphical parameter
## Warning in axis(side = side, at = at, labels = labels, ...): "alpha" is not a graphical parameter
## Warning in box(...): "alpha" is not a graphical parameter
## Warning in title(...): "alpha" is not a graphical parameter

This second MA plot uses alpha = 0.05 and can be used agains the first MA plot to identify which features have adjusted p-values between 0.05 and 0.1.

## MA plot with alpha corresponding to the one that gives the nBest features
nBest.actual <- min(nBest, nrow(head(res.df, n = nBest)))
nBest.alpha <- head(res.df, n = nBest)$padj[nBest.actual]
plotMA(res, alpha = nBest.alpha * 1.00000000000001,
    main = paste('MA plot for top', nBest.actual, 'features'))
## Warning in plot.window(...): "alpha" is not a graphical parameter
## Warning in plot.xy(xy, type, ...): "alpha" is not a graphical parameter
## Warning in axis(side = side, at = at, labels = labels, ...): "alpha" is not a graphical parameter
## Warning in axis(side = side, at = at, labels = labels, ...): "alpha" is not a graphical parameter
## Warning in box(...): "alpha" is not a graphical parameter
## Warning in title(...): "alpha" is not a graphical parameter

The third and final MA plot uses an alpha such that the top 500 features are shown in the plot. These are the features that whose details are included in the top features interactive table.

6 P-values distribution

## P-value histogram plot
ggplot(res.df[!is.na(res.df$pvalue), ], aes(x = pvalue)) +
    geom_histogram(alpha=.5, position='identity', bins = 50) +
    labs(title='Histogram of unadjusted p-values') +
    xlab('Unadjusted p-values') +
    xlim(c(0, 1.0005))

This plot shows a histogram of the unadjusted p-values. It might be skewed right or left, or flat as shown in the Wikipedia examples. The shape depends on the percent of features that are differentially expressed. For further information on how to interpret a histogram of p-values check David Robinson’s post on this topic.

## P-value distribution summary
summary(res.df$pvalue)
##      Min.   1st Qu.    Median      Mean   3rd Qu.      Max. 
## 0.0007338 0.2456674 0.5039202 0.4979396 0.7529862 1.0000000

This is the numerical summary of the distribution of the p-values.

## Split features by different p-value cutoffs
pval_table <- lapply(c(1e-04, 0.001, 0.01, 0.025, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5,
    0.6, 0.7, 0.8, 0.9, 1), function(x) {
    data.frame('Cut' = x, 'Count' = sum(res.df$pvalue <= x, na.rm = TRUE))
})
pval_table <- do.call(rbind, pval_table)
if(outputIsHTML) {
    kable(pval_table, format = 'markdown', align = c('c', 'c'))
} else {
    kable(pval_table)
}
Cut Count
0.0001 0
0.0010 2
0.0100 15
0.0250 30
0.0500 59
0.1000 104
0.2000 200
0.3000 309
0.4000 402
0.5000 496
0.6000 592
0.7000 703
0.8000 810
0.9000 906
1.0000 1000

This table shows the number of features with p-values less or equal than some commonly used cutoff values.

7 Adjusted p-values distribution

## Adjusted p-values histogram plot
ggplot(res.df[!is.na(res.df$padj), ], aes(x = padj)) +
    geom_histogram(alpha=.5, position='identity', bins = 50) +
    labs(title=paste('Histogram of', elementMetadata(res)$description[grep('adjusted', elementMetadata(res)$description)])) +
    xlab('Adjusted p-values') +
    xlim(c(0, 1.0005))

This plot shows a histogram of the BH adjusted p-values. It might be skewed right or left, or flat as shown in the Wikipedia examples.

## Adjusted p-values distribution summary
summary(res.df$padj)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##  0.3040  0.9479  0.9821  0.9533  0.9821  1.0000

This is the numerical summary of the distribution of the BH adjusted p-values.

## Split features by different adjusted p-value cutoffs
padj_table <- lapply(c(1e-04, 0.001, 0.01, 0.025, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5,
    0.6, 0.7, 0.8, 0.9, 1), function(x) {
    data.frame('Cut' = x, 'Count' = sum(res.df$padj <= x, na.rm = TRUE))
})
padj_table <- do.call(rbind, padj_table)
if(outputIsHTML) {
    kable(padj_table, format = 'markdown', align = c('c', 'c'))
} else {
    kable(padj_table)
}
Cut Count
0.0001 0
0.0010 0
0.0100 0
0.0250 0
0.0500 0
0.1000 0
0.2000 0
0.3000 0
0.4000 4
0.5000 4
0.6000 6
0.7000 27
0.8000 57
0.9000 104
1.0000 1000

This table shows the number of features with BH adjusted p-values less or equal than some commonly used cutoff values.

8 Top features

This interactive table shows the top 500 features ordered by their BH adjusted p-values. Use the search function to find your feature of interest or sort by one of the columns.

## Add search url if appropriate
if(!is.null(searchURL) & outputIsHTML) {
    res.df$Feature <- paste0('<a href="', searchURL, res.df$Feature, '">',
        res.df$Feature, '</a>')
}

for(i in which(colnames(res.df) %in% c('pvalue', 'padj'))) res.df[, i] <- format(res.df[, i], scientific = TRUE)

if(outputIsHTML) {
    datatable(head(res.df, n = nBest), options = list(pagingType='full_numbers', pageLength=10, scrollX='100%'), escape = FALSE, rownames = FALSE) %>% formatRound(which(!colnames(res.df) %in% c('pvalue', 'padj', 'Feature')), digits)
} else {
    res.df_top <- head(res.df, n = 20)
    for(i in which(!colnames(res.df) %in% c('pvalue', 'padj', 'Feature'))) res.df_top[, i] <- round(res.df_top[, i], digits)
    kable(res.df_top)
}

9 Count plots top features

This section contains plots showing the normalized counts per sample for each group of interest. Only the best 20 features are shown, ranked by their BH adjusted p-values. The Y axis is on the log10 scale and the feature name is shown in the title of each plot.

plotCounts_gg <- function(i, dds, intgroup) {
    group <- if (length(intgroup) == 1) {
        colData(dds)[[intgroup]]
    } else if (length(intgroup) == 2) {
        lvls <- as.vector(t(outer(levels(colData(dds)[[intgroup[1]]]), 
            levels(colData(dds)[[intgroup[2]]]), function(x, 
                y) paste(x, y, sep = " : "))))
        droplevels(factor(apply(as.data.frame(colData(dds)[, 
            intgroup, drop = FALSE]), 1, paste, collapse = " : "), 
            levels = lvls))
    } else {
        factor(apply(as.data.frame(colData(dds)[, intgroup, drop = FALSE]), 
            1, paste, collapse = " : "))
    }
    data <- plotCounts(dds, gene=i, intgroup=intgroup, returnData = TRUE)
    ## Change in version 1.15.3
    ## It might not be necessary to have any of this if else, but I'm not
    ## sure that plotCounts(returnData) will always return the 'group' variable.
    if('group' %in% colnames(data)) {
        data$group <- group
    } else {
        data <- cbind(data, data.frame('group' = group))
    }

    ggplot(data, aes(x = group, y = count)) + geom_point() + ylab('Normalized count') + ggtitle(i) + coord_trans(y = "log10") + theme(axis.text.x = element_text(angle = 90, hjust = 1))
}
for(i in head(features, nBestFeatures)) {
    print(plotCounts_gg(i, dds = dds, intgroup = intgroup))
}

10 edgeR specific plots

10.1 Biological coefficient of variation

## Make BCV plot for edgeR results
plotBCV(dge)

This plot shows the feature-wise biological coefficient of variation (BCV) against the feature abundances in log2 counts per million. The plot shows the common, trended and feature-wise BCV estimates. If using edgeR-robust only the trend and tagwise are shown. Check the edgeR vignette for further details regarding this plot.

10.2 MDS plot of distances

## Make MDS plot for edgeR results
plotMDS(dge)

This plot is a multidimensional scaling plot of distances between feature expression profiles. It shows the names of the samples in a two-dimensional scatterplot such that the distances are approximately the log2 fold changes between samples. Check the edgeR vignette for further details regarding this plot.

11 Reproducibility

The input for this report was generated with edgeR (Chen, Chen, Lun et al., 2025) and the resulting features were called significantly differentially expressed if their BH adjusted p-values were less than alpha = 0.1. This report was generated in path /__w/regionReport/regionReport/docs/reference using the following call to edgeReport():

## edgeReport(dge = dge, object = lrt, project = "edgeR-example", 
##     intgroup = "group", outdir = "edgeReport-example")

Date the report was generated.

## [1] "2026-03-31 17:56:40 UTC"

Wallclock time spent generating the report.

## Time difference of 9.416 secs

R session information.

## ─ Session info ───────────────────────────────────────────────────────────────────────────────────────────────────────
##  setting  value
##  version  R Under development (unstable) (2026-03-28 r89738)
##  os       Ubuntu 24.04.4 LTS
##  system   x86_64, linux-gnu
##  ui       X11
##  language en
##  collate  C
##  ctype    en_US.UTF-8
##  tz       UTC
##  date     2026-03-31
##  pandoc   3.9.0.2 @ /usr/bin/ (via rmarkdown)
##  quarto   1.8.25 @ /usr/local/bin/quarto
## 
## ─ Packages ───────────────────────────────────────────────────────────────────────────────────────────────────────────
##  package                           * version    date (UTC) lib source
##  abind                               1.4-8      2024-09-12 [1] CRAN (R 4.6.0)
##  annotate                            1.89.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  AnnotationDbi                     * 1.73.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  AnnotationFilter                    1.35.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  backports                           1.5.0      2024-05-23 [1] CRAN (R 4.6.0)
##  base64enc                           0.1-6      2026-02-02 [2] CRAN (R 4.7.0)
##  bibtex                              0.5.2      2026-02-03 [1] CRAN (R 4.6.0)
##  Biobase                           * 2.71.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  BiocFileCache                       3.1.0      2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  BiocGenerics                      * 0.57.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  BiocIO                              1.21.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  BiocManager                         1.30.27    2025-11-14 [2] CRAN (R 4.7.0)
##  BiocParallel                      * 1.45.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  BiocStyle                         * 2.39.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  biomaRt                             2.67.6     2026-03-13 [1] Bioconductor 3.23 (R 4.7.0)
##  Biostrings                          2.79.5     2026-03-06 [1] Bioconductor 3.23 (R 4.7.0)
##  biovizBase                        * 1.59.0     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  bit                                 4.6.0      2025-03-06 [1] CRAN (R 4.6.0)
##  bit64                               4.6.0-1    2025-01-16 [1] CRAN (R 4.6.0)
##  bitops                              1.0-9      2024-10-03 [1] CRAN (R 4.6.0)
##  blob                                1.3.0      2026-01-14 [1] CRAN (R 4.6.0)
##  bookdown                            0.46       2025-12-05 [1] CRAN (R 4.6.0)
##  BSgenome                            1.79.1     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  bslib                               0.10.0     2026-01-26 [2] CRAN (R 4.7.0)
##  bumphunter                          1.53.0     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  cachem                              1.1.0      2024-05-16 [2] CRAN (R 4.7.0)
##  checkmate                           2.3.4      2026-02-03 [1] CRAN (R 4.6.0)
##  cigarillo                           1.1.0      2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  cli                                 3.6.5      2025-04-23 [2] CRAN (R 4.7.0)
##  cluster                             2.1.8.2    2026-02-05 [3] CRAN (R 4.7.0)
##  codetools                           0.2-20     2024-03-31 [3] CRAN (R 4.7.0)
##  colorspace                          2.1-2      2025-09-22 [1] CRAN (R 4.6.0)
##  crayon                              1.5.3      2024-06-20 [2] CRAN (R 4.7.0)
##  crosstalk                           1.2.2      2025-08-26 [1] CRAN (R 4.6.0)
##  curl                                7.0.0      2025-08-19 [2] CRAN (R 4.7.0)
##  data.table                          1.18.2.1   2026-01-27 [1] CRAN (R 4.6.0)
##  DBI                                 1.3.0      2026-02-25 [1] CRAN (R 4.7.0)
##  dbplyr                              2.5.2      2026-02-13 [1] CRAN (R 4.7.0)
##  DEFormats                         * 1.39.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  DelayedArray                        0.37.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  derfinder                         * 1.45.0     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  derfinderHelper                     1.45.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  derfinderPlot                     * 1.45.0     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  desc                                1.4.3      2023-12-10 [2] CRAN (R 4.7.0)
##  DESeq2                            * 1.51.7     2026-03-13 [1] Bioconductor 3.23 (R 4.7.0)
##  devtools                            2.5.0      2026-03-14 [2] CRAN (R 4.7.0)
##  DEXSeq                            * 1.57.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  dichromat                           2.0-0.1    2022-05-02 [1] CRAN (R 4.6.0)
##  digest                              0.6.39     2025-11-19 [2] CRAN (R 4.7.0)
##  doRNG                               1.8.6.3    2026-02-05 [1] CRAN (R 4.6.0)
##  downlit                             0.4.5      2025-11-14 [2] CRAN (R 4.7.0)
##  dplyr                               1.2.0      2026-02-03 [1] CRAN (R 4.6.0)
##  DT                                * 0.34.0     2025-09-02 [1] CRAN (R 4.6.0)
##  edgeR                             * 4.9.4      2026-03-02 [1] Bioconductor 3.23 (R 4.7.0)
##  ellipsis                            0.3.2      2021-04-29 [2] CRAN (R 4.7.0)
##  ensembldb                           2.35.0     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  evaluate                            1.0.5      2025-08-27 [2] CRAN (R 4.7.0)
##  fansi                               1.0.7      2025-11-19 [2] CRAN (R 4.7.0)
##  farver                              2.1.2      2024-05-13 [1] CRAN (R 4.6.0)
##  fastmap                             1.2.0      2024-05-15 [2] CRAN (R 4.7.0)
##  filelock                            1.0.3      2023-12-11 [1] CRAN (R 4.6.0)
##  foreach                             1.5.2      2022-02-02 [1] CRAN (R 4.6.0)
##  foreign                             0.8-91     2026-01-29 [3] CRAN (R 4.7.0)
##  Formula                             1.2-5      2023-02-24 [1] CRAN (R 4.6.0)
##  fs                                  2.0.1      2026-03-24 [2] CRAN (R 4.7.0)
##  genefilter                          1.93.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  geneplotter                         1.89.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  generics                          * 0.1.4      2025-05-09 [1] CRAN (R 4.6.0)
##  GenomeInfoDb                      * 1.47.2     2025-12-04 [1] Bioconductor 3.23 (R 4.6.0)
##  GenomicAlignments                   1.47.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  GenomicFeatures                   * 1.63.1     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  GenomicFiles                        1.47.0     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  GenomicRanges                     * 1.63.1     2025-12-08 [1] Bioconductor 3.23 (R 4.6.0)
##  ggbio                             * 1.59.0     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  ggplot2                           * 4.0.2      2026-02-03 [1] CRAN (R 4.6.0)
##  glue                                1.8.0      2024-09-30 [2] CRAN (R 4.7.0)
##  graph                               1.89.1     2025-12-02 [1] Bioconductor 3.23 (R 4.6.0)
##  gridExtra                         * 2.3        2017-09-09 [1] CRAN (R 4.6.0)
##  gtable                              0.3.6      2024-10-25 [1] CRAN (R 4.6.0)
##  Hmisc                               5.2-5      2026-01-09 [1] CRAN (R 4.6.0)
##  hms                                 1.1.4      2025-10-17 [1] CRAN (R 4.6.0)
##  htmlTable                           2.4.3      2024-07-21 [1] CRAN (R 4.6.0)
##  htmltools                           0.5.9      2025-12-04 [2] CRAN (R 4.7.0)
##  htmlwidgets                         1.6.4      2023-12-06 [2] CRAN (R 4.7.0)
##  httr                                1.4.8      2026-02-13 [1] CRAN (R 4.7.0)
##  httr2                               1.2.2      2025-12-08 [2] CRAN (R 4.7.0)
##  hwriter                             1.3.2.1    2022-04-08 [1] CRAN (R 4.6.0)
##  IRanges                           * 2.45.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  iterators                           1.0.14     2022-02-05 [1] CRAN (R 4.6.0)
##  jquerylib                           0.1.4      2021-04-26 [2] CRAN (R 4.7.0)
##  jsonlite                            2.0.0      2025-03-27 [2] CRAN (R 4.7.0)
##  KEGGREST                            1.51.1     2025-11-17 [1] Bioconductor 3.23 (R 4.6.0)
##  knitr                             * 1.51       2025-12-20 [2] CRAN (R 4.7.0)
##  knitrBootstrap                      1.0.4      2025-12-08 [1] CRAN (R 4.6.0)
##  labeling                            0.4.3      2023-08-29 [1] CRAN (R 4.6.0)
##  lattice                             0.22-9     2026-02-09 [3] CRAN (R 4.7.0)
##  lazyeval                            0.2.2      2019-03-15 [1] CRAN (R 4.6.0)
##  lifecycle                           1.0.5      2026-01-08 [2] CRAN (R 4.7.0)
##  limma                             * 3.67.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  locfit                              1.5-9.12   2025-03-05 [1] CRAN (R 4.6.0)
##  lubridate                           1.9.5      2026-02-04 [1] CRAN (R 4.6.0)
##  magrittr                            2.0.4      2025-09-12 [2] CRAN (R 4.7.0)
##  markdown                            2.0        2025-03-23 [1] CRAN (R 4.6.0)
##  Matrix                              1.7-5      2026-03-21 [3] CRAN (R 4.7.0)
##  MatrixGenerics                    * 1.23.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  matrixStats                       * 1.5.0      2025-01-07 [1] CRAN (R 4.6.0)
##  memoise                             2.0.1      2021-11-26 [2] CRAN (R 4.7.0)
##  mgcv                              * 1.9-4      2025-11-07 [3] CRAN (R 4.7.0)
##  nlme                              * 3.1-169    2026-03-27 [3] CRAN (R 4.7.0)
##  nnet                                7.3-20     2025-01-01 [3] CRAN (R 4.7.0)
##  OrganismDbi                         1.53.2     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  otel                                0.2.0      2025-08-29 [2] CRAN (R 4.7.0)
##  pasilla                           * 1.39.0     2025-11-04 [1] Bioconductor 3.23 (R 4.6.0)
##  pheatmap                          * 1.0.13     2025-06-05 [1] CRAN (R 4.6.0)
##  pillar                              1.11.1     2025-09-17 [2] CRAN (R 4.7.0)
##  pkgbuild                            1.4.8      2025-05-26 [2] CRAN (R 4.7.0)
##  pkgconfig                           2.0.3      2019-09-22 [2] CRAN (R 4.7.0)
##  pkgdown                             2.2.0.9000 2026-03-31 [1] Github (r-lib/pkgdown@a6abe43)
##  pkgload                             1.5.0      2026-02-03 [2] CRAN (R 4.7.0)
##  plyr                                1.8.9      2023-10-02 [1] CRAN (R 4.6.0)
##  png                                 0.1-9      2026-03-15 [1] CRAN (R 4.7.0)
##  prettyunits                         1.2.0      2023-09-24 [2] CRAN (R 4.7.0)
##  progress                            1.2.3      2023-12-06 [1] CRAN (R 4.6.0)
##  ProtGenerics                        1.43.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  purrr                               1.2.1      2026-01-09 [2] CRAN (R 4.7.0)
##  qvalue                              2.43.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  R6                                  2.6.1      2025-02-15 [2] CRAN (R 4.7.0)
##  ragg                                1.5.2      2026-03-23 [2] CRAN (R 4.7.0)
##  rappdirs                            0.3.4      2026-01-17 [2] CRAN (R 4.7.0)
##  RBGL                                1.87.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  RColorBrewer                      * 1.1-3      2022-04-03 [1] CRAN (R 4.6.0)
##  Rcpp                                1.1.1      2026-01-10 [2] CRAN (R 4.7.0)
##  RCurl                               1.98-1.18  2026-03-21 [1] CRAN (R 4.7.0)
##  RefManageR                          1.4.0      2022-09-30 [1] CRAN (R 4.6.0)
##  regionReport                      * 1.45.0     2026-03-31 [1] Bioconductor
##  reshape2                            1.4.5      2025-11-12 [1] CRAN (R 4.6.0)
##  restfulr                            0.0.16     2025-06-27 [1] CRAN (R 4.6.0)
##  rjson                               0.2.23     2024-09-16 [1] CRAN (R 4.6.0)
##  rlang                               1.1.7      2026-01-09 [2] CRAN (R 4.7.0)
##  rmarkdown                           2.31       2026-03-26 [2] CRAN (R 4.7.0)
##  rngtools                            1.5.2      2021-09-20 [1] CRAN (R 4.6.0)
##  rpart                               4.1.27     2026-03-27 [3] CRAN (R 4.7.0)
##  Rsamtools                           2.27.1     2026-03-08 [1] Bioconductor 3.23 (R 4.7.0)
##  RSQLite                             2.4.6      2026-02-06 [1] CRAN (R 4.6.0)
##  rstudioapi                          0.18.0     2026-01-16 [2] CRAN (R 4.7.0)
##  rtracklayer                         1.71.3     2025-12-14 [1] Bioconductor 3.23 (R 4.6.0)
##  S4Arrays                            1.11.1     2025-11-25 [1] Bioconductor 3.23 (R 4.6.0)
##  S4Vectors                         * 0.49.0     2025-10-30 [1] Bioconductor 3.23 (R 4.6.0)
##  S7                                  0.2.1      2025-11-14 [1] CRAN (R 4.6.0)
##  sass                                0.4.10     2025-04-11 [2] CRAN (R 4.7.0)
##  scales                              1.4.0      2025-04-24 [1] CRAN (R 4.6.0)
##  Seqinfo                           * 1.1.0      2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  sessioninfo                       * 1.2.3      2025-02-05 [2] CRAN (R 4.7.0)
##  SparseArray                         1.11.12    2026-03-30 [1] Bioconductor 3.23 (R 4.7.0)
##  statmod                             1.5.1      2025-10-09 [1] CRAN (R 4.6.0)
##  stringi                             1.8.7      2025-03-27 [2] CRAN (R 4.7.0)
##  stringr                             1.6.0      2025-11-04 [2] CRAN (R 4.7.0)
##  SummarizedExperiment              * 1.41.1     2026-02-06 [1] Bioconductor 3.23 (R 4.6.0)
##  survival                            3.8-6      2026-01-16 [3] CRAN (R 4.7.0)
##  systemfonts                         1.3.2      2026-03-05 [2] CRAN (R 4.7.0)
##  textshaping                         1.0.5      2026-03-06 [2] CRAN (R 4.7.0)
##  tibble                              3.3.1      2026-01-11 [2] CRAN (R 4.7.0)
##  tidyselect                          1.2.1      2024-03-11 [1] CRAN (R 4.6.0)
##  timechange                          0.4.0      2026-01-29 [1] CRAN (R 4.6.0)
##  TxDb.Hsapiens.UCSC.hg19.knownGene * 3.22.1     2026-02-11 [1] Bioconductor
##  UCSC.utils                          1.7.1      2025-12-09 [1] Bioconductor 3.23 (R 4.6.0)
##  usethis                             3.2.1      2025-09-06 [2] CRAN (R 4.7.0)
##  VariantAnnotation                   1.57.1     2025-12-18 [1] Bioconductor 3.23 (R 4.6.0)
##  vctrs                               0.7.2      2026-03-21 [2] CRAN (R 4.7.0)
##  whisker                             0.4.1      2022-12-05 [2] CRAN (R 4.7.0)
##  withr                               3.0.2      2024-10-28 [2] CRAN (R 4.7.0)
##  xfun                                0.57       2026-03-20 [2] CRAN (R 4.7.0)
##  XML                                 3.99-0.23  2026-03-20 [1] CRAN (R 4.7.0)
##  xml2                                1.5.2      2026-01-17 [2] CRAN (R 4.7.0)
##  xtable                              1.8-8      2026-02-22 [2] CRAN (R 4.7.0)
##  XVector                             0.51.0     2025-10-31 [1] Bioconductor 3.23 (R 4.6.0)
##  yaml                                2.3.12     2025-12-10 [2] CRAN (R 4.7.0)
## 
##  [1] /__w/_temp/Library
##  [2] /usr/local/lib/R/site-library
##  [3] /usr/local/lib/R/library
##  * ── Packages attached to the search path.
## 
## ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

Pandoc version used: 3.9.0.2.

12 Bibliography

This report was created with regionReport (Collado-Torres, Jaffe, and Leek, 2016) using rmarkdown (Allaire, Xie, Dervieux et al., 2026) while knitr (Xie, 2014) and DT (Xie, Cheng, Tan et al., 2025) were running behind the scenes. pheatmap (Kolde, 2025) was used to create the sample distances heatmap. Several plots were made with ggplot2 (Wickham, 2016).

Citations made with RefManageR (McLean, 2017). The BibTeX file can be found here.

[1] J. Allaire, Y. Xie, C. Dervieux, et al. rmarkdown: Dynamic Documents for R. R package version 2.31. 2026. URL: https://github.com/rstudio/rmarkdown.

[2] Y. Chen, L. Chen, A. T. L. Lun, et al. “edgeR v4: powerful differential analysis of sequencing data with expanded functionality and improved support for small counts and larger datasets”. In: Nucleic Acids Research 53.2 (2025), p. gkaf018. DOI: 10.1093/nar/gkaf018.

[3] L. Collado-Torres, A. E. Jaffe, and J. T. Leek. “regionReport: Interactive reports for region-level and feature-level genomic analyses [version2; referees: 2 approved, 1 approved with reservations]”. In: F1000Research 4 (2016), p. 105. DOI: 10.12688/f1000research.6379.2. URL: http://f1000research.com/articles/4-105/v2.

[4] R. Kolde. pheatmap: Pretty Heatmaps. R package version 1.0.13. 2025. DOI: 10.32614/CRAN.package.pheatmap. URL: https://CRAN.R-project.org/package=pheatmap.

[5] M. I. Love, W. Huber, and S. Anders. “Moderated estimation of fold change and dispersion for RNA-seq data with DESeq2”. In: Genome Biology 15 (12 2014), p. 550. DOI: 10.1186/s13059-014-0550-8.

[6] M. W. McLean. “RefManageR: Import and Manage BibTeX and BibLaTeX References in R”. In: The Journal of Open Source Software (2017). DOI: 10.21105/joss.00338.

[7] H. Wickham. ggplot2: Elegant Graphics for Data Analysis. Springer-Verlag New York, 2016. ISBN: 978-3-319-24277-4. URL: https://ggplot2.tidyverse.org.

[8] Y. Xie. “knitr: A Comprehensive Tool for Reproducible Research in R”. In: Implementing Reproducible Computational Research. Ed. by V. Stodden, F. Leisch and R. D. Peng. ISBN 978-1466561595. Chapman and Hall/CRC, 2014.

[9] Y. Xie, J. Cheng, X. Tan, et al. DT: A Wrapper of the JavaScript Library ‘DataTables’. R package version 0.34.0. 2025. DOI: 10.32614/CRAN.package.DT. URL: https://CRAN.R-project.org/package=DT.