1 Basic DESeq2 results exploration

Project: DESeq2-example.

2 Introduction

This report is meant to help explore DESeq2 (Love, Huber, and Anders, 2014) 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)

## Get percent of variance explained
data_pca <- plotPCA(rld, intgroup = intgroup, returnData = TRUE)
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 58 and 30 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))

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))

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'))

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))
## Warning: Removed 2 rows containing missing values (`geom_bar()`).

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.    NA's 
##  0.0000  0.2061  0.5318  0.4994  0.7943  0.9998    2241

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 426
0.0010 625
0.0100 993
0.0250 1286
0.0500 1622
0.1000 2160
0.2000 3033
0.3000 3906
0.4000 4871
0.5000 5849
0.6000 6924
0.7000 8049
0.8000 9321
0.9000 11047
1.0000 12358

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))
## Warning: Removed 2 rows containing missing values (`geom_bar()`).

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.    NA's 
##   0.000   0.395   0.765   0.639   0.916   1.000    6276

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 284
0.0010 387
0.0100 581
0.0250 721
0.0500 845
0.1000 1061
0.2000 1394
0.3000 1737
0.4000 2093
0.5000 2504
0.6000 2965
0.7000 3539
0.8000 4567
0.9000 6013
1.0000 8323

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 Reproducibility

The input for this report was generated with DESeq2 (Love, Huber, and Anders, 2014) using version 1.40.1 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 DESeq2Report():

## DESeq2Report(dds = dds, project = "DESeq2-example", intgroup = c("condition", 
##     "type"), outdir = "DESeq2Report-example")

Date the report was generated.

## [1] "2023-05-07 05:32:24 UTC"

Wallclock time spent generating the report.

## Time difference of 14.052 secs

R session information.

## ─ Session info ───────────────────────────────────────────────────────────────────────────────────────────────────────
##  setting  value
##  version  R version 4.3.0 (2023-04-21)
##  os       Ubuntu 22.04.2 LTS
##  system   x86_64, linux-gnu
##  ui       X11
##  language en
##  collate  C
##  ctype    en_US.UTF-8
##  tz       UTC
##  date     2023-05-07
##  pandoc   2.19.2 @ /usr/local/bin/ (via rmarkdown)
## 
## ─ Packages ───────────────────────────────────────────────────────────────────────────────────────────────────────────
##  package              * version   date (UTC) lib source
##  annotate               1.78.0    2023-04-25 [1] Bioconductor
##  AnnotationDbi        * 1.62.1    2023-05-02 [1] Bioconductor
##  backports              1.4.1     2021-12-13 [1] CRAN (R 4.3.0)
##  base64enc              0.1-3     2015-07-28 [2] RSPM (R 4.3.0)
##  bibtex                 0.5.1     2023-01-26 [1] RSPM (R 4.3.0)
##  Biobase              * 2.60.0    2023-04-25 [1] Bioconductor
##  BiocFileCache          2.8.0     2023-04-25 [1] Bioconductor
##  BiocGenerics         * 0.46.0    2023-04-25 [1] Bioconductor
##  BiocIO                 1.10.0    2023-04-25 [1] Bioconductor
##  BiocManager            1.30.20   2023-02-24 [2] CRAN (R 4.3.0)
##  BiocParallel         * 1.34.1    2023-05-05 [1] Bioconductor
##  BiocStyle            * 2.28.0    2023-04-25 [1] Bioconductor
##  biomaRt                2.56.0    2023-04-25 [1] Bioconductor
##  Biostrings             2.68.0    2023-04-25 [1] Bioconductor
##  bit                    4.0.5     2022-11-15 [1] CRAN (R 4.3.0)
##  bit64                  4.0.5     2020-08-30 [1] CRAN (R 4.3.0)
##  bitops                 1.0-7     2021-04-24 [1] CRAN (R 4.3.0)
##  blob                   1.2.4     2023-03-17 [1] RSPM (R 4.3.0)
##  bookdown               0.33      2023-03-06 [1] RSPM (R 4.3.0)
##  BSgenome               1.68.0    2023-04-25 [1] Bioconductor
##  bslib                  0.4.2     2022-12-16 [2] RSPM (R 4.3.0)
##  bumphunter             1.42.0    2023-04-25 [1] Bioconductor
##  cachem                 1.0.8     2023-05-01 [2] RSPM (R 4.3.0)
##  callr                  3.7.3     2022-11-02 [2] RSPM (R 4.3.0)
##  checkmate              2.2.0     2023-04-27 [1] RSPM (R 4.3.0)
##  cli                    3.6.1     2023-03-23 [2] RSPM (R 4.3.0)
##  cluster                2.1.4     2022-08-22 [3] CRAN (R 4.3.0)
##  codetools              0.2-19    2023-02-01 [3] CRAN (R 4.3.0)
##  colorspace             2.1-0     2023-01-23 [1] RSPM (R 4.3.0)
##  crayon                 1.5.2     2022-09-29 [2] RSPM (R 4.3.0)
##  crosstalk              1.2.0     2021-11-04 [1] CRAN (R 4.3.0)
##  curl                   5.0.0     2023-01-12 [2] RSPM (R 4.3.0)
##  data.table             1.14.8    2023-02-17 [1] RSPM (R 4.3.0)
##  DBI                    1.1.3     2022-06-18 [1] CRAN (R 4.3.0)
##  dbplyr                 2.3.2     2023-03-21 [1] RSPM (R 4.3.0)
##  DEFormats              1.28.0    2023-04-25 [1] Bioconductor
##  DelayedArray           0.26.2    2023-05-05 [1] Bioconductor
##  derfinder              1.34.0    2023-04-25 [1] Bioconductor
##  derfinderHelper        1.34.0    2023-04-25 [1] Bioconductor
##  desc                   1.4.2     2022-09-08 [2] RSPM (R 4.3.0)
##  DESeq2               * 1.40.1    2023-05-02 [1] Bioconductor
##  devtools               2.4.5     2022-10-11 [2] RSPM (R 4.3.0)
##  DEXSeq               * 1.46.0    2023-04-25 [1] Bioconductor
##  digest                 0.6.31    2022-12-11 [2] RSPM (R 4.3.0)
##  doRNG                  1.8.6     2023-01-16 [1] RSPM (R 4.3.0)
##  downlit                0.4.2     2022-07-05 [2] RSPM (R 4.3.0)
##  dplyr                  1.1.2     2023-04-20 [1] RSPM (R 4.3.0)
##  DT                   * 0.27      2023-01-17 [1] RSPM (R 4.3.0)
##  edgeR                  3.42.2    2023-05-02 [1] Bioconductor
##  ellipsis               0.3.2     2021-04-29 [2] RSPM (R 4.3.0)
##  evaluate               0.20      2023-01-17 [2] RSPM (R 4.3.0)
##  fansi                  1.0.4     2023-01-22 [2] RSPM (R 4.3.0)
##  farver                 2.1.1     2022-07-06 [1] CRAN (R 4.3.0)
##  fastmap                1.1.1     2023-02-24 [2] RSPM (R 4.3.0)
##  filelock               1.0.2     2018-10-05 [1] CRAN (R 4.3.0)
##  foreach                1.5.2     2022-02-02 [1] CRAN (R 4.3.0)
##  foreign                0.8-84    2022-12-06 [3] CRAN (R 4.3.0)
##  Formula                1.2-5     2023-02-24 [1] RSPM (R 4.3.0)
##  fs                     1.6.2     2023-04-25 [2] RSPM (R 4.3.0)
##  genefilter             1.82.1    2023-05-02 [1] Bioconductor
##  geneplotter            1.78.0    2023-04-25 [1] Bioconductor
##  generics               0.1.3     2022-07-05 [1] CRAN (R 4.3.0)
##  GenomeInfoDb         * 1.36.0    2023-04-25 [1] Bioconductor
##  GenomeInfoDbData       1.2.10    2023-05-07 [1] Bioconductor
##  GenomicAlignments      1.36.0    2023-04-25 [1] Bioconductor
##  GenomicFeatures        1.52.0    2023-04-25 [1] Bioconductor
##  GenomicFiles           1.36.0    2023-04-25 [1] Bioconductor
##  GenomicRanges        * 1.52.0    2023-04-25 [1] Bioconductor
##  ggplot2              * 3.4.2     2023-04-03 [1] RSPM (R 4.3.0)
##  glue                   1.6.2     2022-02-24 [2] RSPM (R 4.3.0)
##  gridExtra              2.3       2017-09-09 [1] CRAN (R 4.3.0)
##  gtable                 0.3.3     2023-03-21 [1] RSPM (R 4.3.0)
##  highr                  0.10      2022-12-22 [2] RSPM (R 4.3.0)
##  Hmisc                  5.0-1     2023-03-08 [1] RSPM (R 4.3.0)
##  hms                    1.1.3     2023-03-21 [1] RSPM (R 4.3.0)
##  htmlTable              2.4.1     2022-07-07 [1] CRAN (R 4.3.0)
##  htmltools              0.5.5     2023-03-23 [2] RSPM (R 4.3.0)
##  htmlwidgets            1.6.2     2023-03-17 [2] RSPM (R 4.3.0)
##  httpuv                 1.6.9     2023-02-14 [2] RSPM (R 4.3.0)
##  httr                   1.4.5     2023-02-24 [2] RSPM (R 4.3.0)
##  hwriter                1.3.2.1   2022-04-08 [1] CRAN (R 4.3.0)
##  IRanges              * 2.34.0    2023-04-25 [1] Bioconductor
##  iterators              1.0.14    2022-02-05 [1] CRAN (R 4.3.0)
##  jquerylib              0.1.4     2021-04-26 [2] RSPM (R 4.3.0)
##  jsonlite               1.8.4     2022-12-06 [2] RSPM (R 4.3.0)
##  KEGGREST               1.40.0    2023-04-25 [1] Bioconductor
##  knitr                * 1.42      2023-01-25 [2] RSPM (R 4.3.0)
##  knitrBootstrap         1.0.2     2018-05-24 [1] CRAN (R 4.3.0)
##  labeling               0.4.2     2020-10-20 [1] CRAN (R 4.3.0)
##  later                  1.3.1     2023-05-02 [2] RSPM (R 4.3.0)
##  lattice                0.21-8    2023-04-05 [3] CRAN (R 4.3.0)
##  lifecycle              1.0.3     2022-10-07 [2] RSPM (R 4.3.0)
##  limma                  3.56.0    2023-04-25 [1] Bioconductor
##  locfit                 1.5-9.7   2023-01-02 [1] RSPM (R 4.3.0)
##  lubridate              1.9.2     2023-02-10 [1] RSPM (R 4.3.0)
##  magrittr               2.0.3     2022-03-30 [2] RSPM (R 4.3.0)
##  markdown               1.6       2023-04-07 [1] RSPM (R 4.3.0)
##  Matrix                 1.5-4     2023-04-04 [3] CRAN (R 4.3.0)
##  MatrixGenerics       * 1.12.0    2023-04-25 [1] Bioconductor
##  matrixStats          * 0.63.0    2022-11-18 [1] CRAN (R 4.3.0)
##  memoise                2.0.1     2021-11-26 [2] RSPM (R 4.3.0)
##  mime                   0.12      2021-09-28 [2] RSPM (R 4.3.0)
##  miniUI                 0.1.1.1   2018-05-18 [2] RSPM (R 4.3.0)
##  munsell                0.5.0     2018-06-12 [1] CRAN (R 4.3.0)
##  nnet                   7.3-19    2023-05-03 [3] RSPM (R 4.3.0)
##  pasilla              * 1.28.0    2023-04-27 [1] Bioconductor
##  pheatmap             * 1.0.12    2019-01-04 [1] CRAN (R 4.3.0)
##  pillar                 1.9.0     2023-03-22 [2] RSPM (R 4.3.0)
##  pkgbuild               1.4.0     2022-11-27 [2] RSPM (R 4.3.0)
##  pkgconfig              2.0.3     2019-09-22 [2] RSPM (R 4.3.0)
##  pkgdown                2.0.7     2022-12-14 [2] RSPM (R 4.3.0)
##  pkgload                1.3.2     2022-11-16 [2] RSPM (R 4.3.0)
##  plyr                   1.8.8     2022-11-11 [1] CRAN (R 4.3.0)
##  png                    0.1-8     2022-11-29 [1] CRAN (R 4.3.0)
##  prettyunits            1.1.1     2020-01-24 [2] RSPM (R 4.3.0)
##  processx               3.8.1     2023-04-18 [2] RSPM (R 4.3.0)
##  profvis                0.3.8     2023-05-02 [2] RSPM (R 4.3.0)
##  progress               1.2.2     2019-05-16 [1] CRAN (R 4.3.0)
##  promises               1.2.0.1   2021-02-11 [2] RSPM (R 4.3.0)
##  ps                     1.7.5     2023-04-18 [2] RSPM (R 4.3.0)
##  purrr                  1.0.1     2023-01-10 [2] RSPM (R 4.3.0)
##  qvalue                 2.32.0    2023-04-25 [1] Bioconductor
##  R6                     2.5.1     2021-08-19 [2] RSPM (R 4.3.0)
##  ragg                   1.2.5     2023-01-12 [2] RSPM (R 4.3.0)
##  rappdirs               0.3.3     2021-01-31 [2] RSPM (R 4.3.0)
##  RColorBrewer         * 1.1-3     2022-04-03 [1] CRAN (R 4.3.0)
##  Rcpp                   1.0.10    2023-01-22 [2] RSPM (R 4.3.0)
##  RCurl                  1.98-1.12 2023-03-27 [1] RSPM (R 4.3.0)
##  RefManageR             1.4.0     2022-09-30 [1] CRAN (R 4.3.0)
##  regionReport         * 1.35.0    2023-05-07 [1] Bioconductor
##  remotes                2.4.2     2021-11-30 [1] RSPM (R 4.3.0)
##  reshape2               1.4.4     2020-04-09 [1] CRAN (R 4.3.0)
##  restfulr               0.0.15    2022-06-16 [1] CRAN (R 4.3.0)
##  rjson                  0.2.21    2022-01-09 [1] CRAN (R 4.3.0)
##  rlang                  1.1.1     2023-04-28 [2] RSPM (R 4.3.0)
##  rmarkdown              2.21      2023-03-26 [2] RSPM (R 4.3.0)
##  rngtools               1.5.2     2021-09-20 [1] CRAN (R 4.3.0)
##  rpart                  4.1.19    2022-10-21 [3] CRAN (R 4.3.0)
##  rprojroot              2.0.3     2022-04-02 [2] RSPM (R 4.3.0)
##  Rsamtools              2.16.0    2023-04-25 [1] Bioconductor
##  RSQLite                2.3.1     2023-04-03 [1] RSPM (R 4.3.0)
##  rstudioapi             0.14      2022-08-22 [2] RSPM (R 4.3.0)
##  rtracklayer            1.60.0    2023-04-25 [1] Bioconductor
##  S4Arrays               1.0.1     2023-05-01 [1] Bioconductor
##  S4Vectors            * 0.38.1    2023-05-02 [1] Bioconductor
##  sass                   0.4.6     2023-05-03 [2] RSPM (R 4.3.0)
##  scales                 1.2.1     2022-08-20 [1] CRAN (R 4.3.0)
##  sessioninfo          * 1.2.2     2021-12-06 [2] RSPM (R 4.3.0)
##  shiny                  1.7.4     2022-12-15 [2] RSPM (R 4.3.0)
##  statmod                1.5.0     2023-01-06 [1] RSPM (R 4.3.0)
##  stringi                1.7.12    2023-01-11 [2] RSPM (R 4.3.0)
##  stringr                1.5.0     2022-12-02 [2] RSPM (R 4.3.0)
##  SummarizedExperiment * 1.30.1    2023-05-01 [1] Bioconductor
##  survival               3.5-5     2023-03-12 [3] CRAN (R 4.3.0)
##  systemfonts            1.0.4     2022-02-11 [2] RSPM (R 4.3.0)
##  textshaping            0.3.6     2021-10-13 [2] RSPM (R 4.3.0)
##  tibble                 3.2.1     2023-03-20 [2] RSPM (R 4.3.0)
##  tidyselect             1.2.0     2022-10-10 [1] CRAN (R 4.3.0)
##  timechange             0.2.0     2023-01-11 [1] RSPM (R 4.3.0)
##  urlchecker             1.0.1     2021-11-30 [2] RSPM (R 4.3.0)
##  usethis                2.1.6     2022-05-25 [2] RSPM (R 4.3.0)
##  utf8                   1.2.3     2023-01-31 [2] RSPM (R 4.3.0)
##  VariantAnnotation      1.46.0    2023-04-25 [1] Bioconductor
##  vctrs                  0.6.2     2023-04-19 [2] RSPM (R 4.3.0)
##  whisker                0.4.1     2022-12-05 [2] RSPM (R 4.3.0)
##  withr                  2.5.0     2022-03-03 [2] RSPM (R 4.3.0)
##  xfun                   0.39      2023-04-20 [2] RSPM (R 4.3.0)
##  XML                    3.99-0.14 2023-03-19 [1] RSPM (R 4.3.0)
##  xml2                   1.3.4     2023-04-27 [2] RSPM (R 4.3.0)
##  xtable                 1.8-4     2019-04-21 [2] RSPM (R 4.3.0)
##  XVector                0.40.0    2023-04-25 [1] Bioconductor
##  yaml                   2.3.7     2023-01-23 [2] RSPM (R 4.3.0)
##  zlibbioc               1.46.0    2023-04-25 [1] Bioconductor
## 
##  [1] /__w/_temp/Library
##  [2] /usr/local/lib/R/site-library
##  [3] /usr/local/lib/R/library
## 
## ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

Pandoc version used: 2.19.2.

11 Bibliography

This report was created with regionReport (Collado-Torres, Jaffe, and Leek, 2016) using rmarkdown (Allaire, Xie, Dervieux, McPherson, Luraschi, Ushey, Atkins, Wickham, Cheng, Chang, and Iannone, 2023) while knitr (Xie, 2014) and DT (Xie, Cheng, and Tan, 2023) were running behind the scenes. pheatmap (Kolde, 2019) 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.21. 2023. URL: https://github.com/rstudio/rmarkdown.

[2] 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.

[3] R. Kolde. pheatmap: Pretty Heatmaps. R package version 1.0.12. 2019. URL: https://CRAN.R-project.org/package=pheatmap.

[4] 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.

[5] 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.

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

[7] 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.

[8] Y. Xie, J. Cheng, and X. Tan. DT: A Wrapper of the JavaScript Library ‘DataTables’. R package version 0.27. 2023. URL: https://github.com/rstudio/DT.