library(SingleCellExperiment)
library(TabulaMurisSenisData)
library(ggplot2)

1 Introduction

This package provides access to the processed bulk and single-cell RNA-seq data from the Tabula Muris Senis data set (Schaum et al. 2019; Tabula Muris Consortium 2020). The processed bulk RNA-seq data was downloaded from GEO (accession number GSE132040). The single-cell data (droplet and FACS) was obtained from FigShare (see below for links). All data sets are provided as SingleCellExperiment objects for easy access and use within the Bioconductor ecosystem.

2 Bulk RNA-seq data

The bulk RNA-seq data can be accessed via the TabulaMurisSenisBulk() function. By setting the argument infoOnly to TRUE, we can get information about the size of the data set before downloading it.

tmp <- TabulaMurisSenisBulk(infoOnly = TRUE)
#> Total download size: 59.8 MiB
tms_bulk <- TabulaMurisSenisBulk()
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
tms_bulk
#> class: SingleCellExperiment 
#> dim: 54352 947 
#> metadata(0):
#> assays(1): counts
#> rownames(54352): 0610005C13Rik 0610006L08Rik ... n-TSaga9 n-TStga1
#> rowData names(8): source type ... havana_gene tag
#> colnames(947): A1_384Bulk_Plate1_S1 A1_384Bulk_Plate3_S1 ...
#>   P9_384Bulk_Plate2_S369 P9_384Bulk_Plate3_S369
#> colData names(19): Sample name title ... __alignment_not_unique organ
#> reducedDimNames(0):
#> mainExpName: NULL
#> altExpNames(0):

We list the available tissues.

table(colData(tms_bulk)$organ)
#> 
#>             BAT            Bone           Brain             GAT           Heart 
#>              54              55              56              56              54 
#>          Kidney     Limb_Muscle           Liver            Lung             MAT 
#>              55              54              55              55              56 
#>          Marrow              NA        Pancreas            SCAT            Skin 
#>              54              14              56              56              51 
#> Small_Intestine          Spleen             WBC 
#>              55              56              55

3 Single-cell RNA-seq data

3.1 Droplet data

The data files for the droplet single-cell RNA-seq data were downloaded from FigShare:

We list the available tissues.

listTabulaMurisSenisTissues(dataset = "Droplet")
#>  [1] "All"             "Large_Intestine" "Pancreas"        "Trachea"        
#>  [5] "Skin"            "Fat"             "Thymus"          "Liver"          
#>  [9] "Heart_and_Aorta" "Mammary_Gland"   "Bladder"         "Lung"           
#> [13] "Kidney"          "Limb_Muscle"     "Spleen"          "Tongue"         
#> [17] "Marrow"

As for the bulk data, we can print the size of the data set before downloading it.

tmp <- TabulaMurisSenisDroplet(tissues = "All", infoOnly = TRUE)
#> Total download size (All): 709.0 MiB
tms_droplet <- TabulaMurisSenisDroplet(tissues = "All")
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> require("rhdf5")
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
tms_droplet
#> $All
#> class: SingleCellExperiment 
#> dim: 20138 245389 
#> metadata(0):
#> assays(1): counts
#> rownames(20138): Xkr4 Rp1 ... Sly Erdr1
#> rowData names(6): n_cells means ... highly_variable varm
#> colnames(245389): AAACCTGCAGGGTACA-1-0-0-0 AAACCTGCAGTAAGCG-1-0-0-0 ...
#>   10X_P8_15_TTTGTCATCGGCTTGG-1 10X_P8_15_TTTGTCATCTTGTTTG-1
#> colData names(15): age cell ... louvain leiden
#> reducedDimNames(2): PCA UMAP
#> mainExpName: NULL
#> altExpNames(0):

We plot the UMAP of the entire data set and color by tissue, to re-create the plot from here.

# tissue colors
tissue_cols <- c(Pancreas = "#3182bd", Thymus = "#31a354", 
                 Trachea = "#636363", Bladder = "#637939", 
                 Lung = "#7b4173", Large_Intestine = "#843c39", 
                 Fat = "#969696", Tongue = "#a1d99b", 
                 Mammary_Gland = "#ce6dbd", Limb_Muscle = "#d6616b", 
                 Marrow = "#de9ed6", Skin = "#e6550d", 
                 Liver = "#e7969c", Heart_and_Aorta = "#e7ba52", 
                 Kidney = "#e7cb94", Spleen = "#fd8d3c")

# get dataset with all tissues
se <- tms_droplet$All
se 
#> class: SingleCellExperiment 
#> dim: 20138 245389 
#> metadata(0):
#> assays(1): counts
#> rownames(20138): Xkr4 Rp1 ... Sly Erdr1
#> rowData names(6): n_cells means ... highly_variable varm
#> colnames(245389): AAACCTGCAGGGTACA-1-0-0-0 AAACCTGCAGTAAGCG-1-0-0-0 ...
#>   10X_P8_15_TTTGTCATCGGCTTGG-1 10X_P8_15_TTTGTCATCTTGTTTG-1
#> colData names(15): age cell ... louvain leiden
#> reducedDimNames(2): PCA UMAP
#> mainExpName: NULL
#> altExpNames(0):

# prepare data set for ggplot
ds <- as.data.frame(reducedDim(se, "UMAP"))
ds <- cbind(ds, tissue = colData(se)$tissue)
head(ds)
#>                              UMAP1      UMAP2 tissue
#> AAACCTGCAGGGTACA-1-0-0-0 5.5556602 -10.160711 Tongue
#> AAACCTGCAGTAAGCG-1-0-0-0 2.9584570 -14.145093 Tongue
#> AAACCTGTCATTATCC-1-0-0-0 3.1235533 -14.481063 Tongue
#> AAACGGGGTACAGTGG-1-0-0-0 1.5939721 -14.062417 Tongue
#> AAACGGGGTCTTCTCG-1-0-0-0 0.5233619  -8.997872 Tongue
#> AAAGATGAGCTATGCT-1-0-0-0 1.0210617 -14.642970 Tongue

# plot
ggplot(ds, aes(x = UMAP1, y = UMAP2, color = tissue)) + 
  geom_point(size = 0.05) + 
  scale_color_manual(values = tissue_cols) + 
  theme_classic() + 
  guides(colour = guide_legend(override.aes = list(size = 5)))

3.2 FACS data

The data files for the FACS single-cell RNA-seq data were downloaded from FigShare:

We list the available tissues.

listTabulaMurisSenisTissues(dataset = "FACS")
#>  [1] "All"               "Aorta"             "Kidney"           
#>  [4] "Diaphragm"         "BAT"               "Spleen"           
#>  [7] "Limb_Muscle"       "Liver"             "MAT"              
#> [10] "Thymus"            "Trachea"           "GAT"              
#> [13] "SCAT"              "Bladder"           "Lung"             
#> [16] "Mammary_Gland"     "Pancreas"          "Skin"             
#> [19] "Tongue"            "Brain_Non-Myeloid" "Heart"            
#> [22] "Brain_Myeloid"     "Large_Intestine"   "Marrow"

Also here, we can print the size of the data set before downloading it.

tmp <- TabulaMurisSenisFACS(tissues = "All", infoOnly = TRUE)
#> Total download size (All): 697.0 MiB
tms_facs <- TabulaMurisSenisFACS(tissues = "All")
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
tms_facs
#> $All
#> class: SingleCellExperiment 
#> dim: 22966 110824 
#> metadata(0):
#> assays(1): counts
#> rownames(22966): 0610005C13Rik 0610007C21Rik ... Zzef1 Zzz3
#> rowData names(6): n_cells means ... highly_variable varm
#> colnames(110824): A10_B000497_B009023_S10.mm10-plus-0-0
#>   A10_B000756_B007446_S10.mm10-plus-0-0 ... P9_B000492_S153.mus-2-1
#>   P9_MAA001700_S105.mus-2-1
#> colData names(15): FACS.selection age ... louvain leiden
#> reducedDimNames(2): PCA UMAP
#> mainExpName: NULL
#> altExpNames(0):

We plot the UMAP of the entire data set and color by tissue, to re-create the plot from here.

# tissue colors
tissue_cols <- c(Skin = "#e6550d", Pancreas = "#3182bd", 
                 Limb_Muscle = "#d6616b", Heart = "#e7ba52", 
                 Spleen = "#fd8d3c", Diaphragm = "#8c6d31", 
                 Trachea = "#636363", Tongue = "#a1d99b", 
                 Thymus = "#31a354", `Brain_Non-Myeloid` = "#cedb9c", 
                 Brain_Myeloid = "#b5cf6b", Bladder = "#637939", 
                 Large_Intestine = "#843c39", BAT = "#9c9ede", 
                 GAT = "#bd9e39", MAT = "#a55194", SCAT = "#6baed6", 
                 Lung = "#7b4173", Liver = "#e7969c", 
                 Marrow = "#de9ed6", Kidney = "#e7cb94", 
                 Aorta = "#393b79", Mammary_Gland = "#ce6dbd")

# get dataset with all tissues
se <- tms_facs$All
se 
#> class: SingleCellExperiment 
#> dim: 22966 110824 
#> metadata(0):
#> assays(1): counts
#> rownames(22966): 0610005C13Rik 0610007C21Rik ... Zzef1 Zzz3
#> rowData names(6): n_cells means ... highly_variable varm
#> colnames(110824): A10_B000497_B009023_S10.mm10-plus-0-0
#>   A10_B000756_B007446_S10.mm10-plus-0-0 ... P9_B000492_S153.mus-2-1
#>   P9_MAA001700_S105.mus-2-1
#> colData names(15): FACS.selection age ... louvain leiden
#> reducedDimNames(2): PCA UMAP
#> mainExpName: NULL
#> altExpNames(0):

# prepare data set for ggplot
ds <- as.data.frame(reducedDim(se, "UMAP"))
ds <- cbind(ds, tissue = colData(se)$tissue)
head(ds)
#>                                           UMAP1      UMAP2      tissue
#> A10_B000497_B009023_S10.mm10-plus-0-0  9.917321  10.959189        Skin
#> A10_B000756_B007446_S10.mm10-plus-0-0 12.558255 -14.239025    Pancreas
#> A10_B000802_B009022_S10.mm10-plus-0-0 10.272095   9.065876        Skin
#> A10_B000927_B007456_S10.mm10-plus-0-0  1.349453   7.980347 Limb_Muscle
#> A10_B001361_B007505_S10.mm10-plus-0-0  4.771871  -7.167833       Heart
#> A10_B002452_B009020_S10.mm10-plus-0-0  3.218485  -8.522328      Spleen

# plot
ggplot(ds, aes(x = UMAP1, y = UMAP2, color = tissue)) + 
  geom_point(size = 0.05) + 
  scale_color_manual(values = tissue_cols) + 
  theme_classic() + 
  guides(colour = guide_legend(override.aes = list(size = 5)))

4 Explore data with iSEE

The Tabula Muris Senis datasets are provided in the form of SingleCellExperiment objects.
A natural companion to this data structure is the iSEE package, which can be used for interactive and reproducible data exploration.

Any analysis steps should be performed in advance before calling iSEE, and since these datasets can be quite big, the operations can be time consuming, and/or require a considerable amount of resources.

sce_all_facs <- TabulaMurisSenisFACS(tissues = "All", processedCounts = TRUE)$All
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
#> see ?TabulaMurisSenisData and browseVignettes('TabulaMurisSenisData') for documentation
#> loading from cache
sce_all_facs
#> class: SingleCellExperiment 
#> dim: 22966 110824 
#> metadata(0):
#> assays(2): counts logcounts
#> rownames(22966): 0610005C13Rik 0610007C21Rik ... Zzef1 Zzz3
#> rowData names(6): n_cells means ... highly_variable varm
#> colnames(110824): A10_B000497_B009023_S10.mm10-plus-0-0
#>   A10_B000756_B007446_S10.mm10-plus-0-0 ... P9_B000492_S153.mus-2-1
#>   P9_MAA001700_S105.mus-2-1
#> colData names(15): FACS.selection age ... louvain leiden
#> reducedDimNames(2): PCA UMAP
#> mainExpName: NULL
#> altExpNames(0):

We can see that the sce_all_facs contains both raw and processed counts (in the assays slots counts and logcounts), but also the PCA and UMAP embeddings as provided in the original publication.

assayNames(sce_all_facs)
#> [1] "counts"    "logcounts"
reducedDimNames(sce_all_facs)
#> [1] "PCA"  "UMAP"

If desired, additional processing steps can be performed on the sce_all_facs - e.g., storing signature scores (computed via AUCell) as colData elements.
Once these steps are completed, launching iSEE is as easy as

library(iSEE)
iSEE(sce_all_facs)

This will launch iSEE with a standard default set of panels.
Optionally, we can configure the initial set to start the app in the desired configuration - below, we show how to start iSEE with:

  • a ReducedDimensionPlot displaying the UMAP, colored by the expression of a feature;
  • a RowDataTable, for selecting a feature to be transmitted to the other panels (showing all genes whose name contains “Col1”);
  • a FeatureAssayPlot, for showing the expression of the gene selected in the RowDataTable, split by tissue.
initial <- list()

################################################################################
# (Compact) Settings for Reduced dimension plot 1
################################################################################

initial[["ReducedDimensionPlot1"]] <- new(
    "ReducedDimensionPlot", 
    DataBoxOpen = TRUE, 
    Type = "UMAP", 
    VisualBoxOpen = TRUE, 
    ColorBy = "Feature name", 
    ColorByFeatureName = "Col1a1", 
    ColorByFeatureSource = "RowDataTable1", 
    ColorByFeatureDynamicSource = FALSE
)

################################################################################
# (Compact) Settings for Row data table 1
################################################################################

initial[["RowDataTable1"]] <- new(
    "RowDataTable", 
    Selected = "Col1a1", 
    Search = "Col1"
)
    
################################################################################
# (Compact) Settings for Feature assay plot 1
################################################################################

initial[["FeatureAssayPlot1"]] <- new(
    "FeatureAssayPlot", 
    DataBoxOpen = TRUE, 
    Assay = "logcounts", 
    XAxis = "Column data", 
    XAxisColumnData = "tissue", 
    YAxisFeatureName = "Col1a1", 
    YAxisFeatureSource = "RowDataTable1"
)


Click here to display the complete configuration chunk

initial <- list()

################################################################################
# Settings for Reduced dimension plot 1
################################################################################

initial[["ReducedDimensionPlot1"]] <- new("ReducedDimensionPlot", Type = "UMAP", XAxis = 1L, YAxis = 2L, 
    FacetRowByColData = "FACS.selection", FacetColumnByColData = "FACS.selection", 
    ColorByColumnData = "FACS.selection", ColorByFeatureNameAssay = "logcounts", 
    ColorBySampleNameColor = "#FF0000", ShapeByColumnData = "FACS.selection", 
    SizeByColumnData = "n_genes", FacetRowBy = "None", FacetColumnBy = "None", 
    ColorBy = "Feature name", ColorByDefaultColor = "#000000", 
    ColorByFeatureName = "Col1a1", ColorByFeatureSource = "RowDataTable1", 
    ColorByFeatureDynamicSource = FALSE, ColorBySampleName = "A10_B000497_B009023_S10.mm10-plus-0-0", 
    ColorBySampleSource = "---", ColorBySampleDynamicSource = FALSE, 
    ShapeBy = "None", SizeBy = "None", SelectionAlpha = 0.1, 
    ZoomData = numeric(0), BrushData = list(), VisualBoxOpen = TRUE, 
    VisualChoices = "Color", ContourAdd = FALSE, ContourColor = "#0000FF", 
    PointSize = 1, PointAlpha = 1, Downsample = FALSE, DownsampleResolution = 200, 
    CustomLabels = FALSE, CustomLabelsText = "A10_B000497_B009023_S10.mm10-plus-0-0", 
    FontSize = 1, LegendPointSize = 1, LegendPosition = "Bottom", 
    HoverInfo = TRUE, LabelCenters = FALSE, LabelCentersBy = "FACS.selection", 
    LabelCentersColor = "#000000", VersionInfo = list(iSEE = structure(list(
        c(2L, 5L, 1L)), class = c("package_version", "numeric_version"
    ))), PanelId = c(ReducedDimensionPlot = 1L), PanelHeight = 500L, 
    PanelWidth = 4L, SelectionBoxOpen = FALSE, RowSelectionSource = "---", 
    ColumnSelectionSource = "---", DataBoxOpen = FALSE, RowSelectionDynamicSource = FALSE, 
    ColumnSelectionDynamicSource = FALSE, RowSelectionRestrict = FALSE, 
    ColumnSelectionRestrict = FALSE, SelectionHistory = list())

################################################################################
# Settings for Row data table 1
################################################################################

initial[["RowDataTable1"]] <- new("RowDataTable", Selected = "Col1a1", Search = "Col1", SearchColumns = c("", 
"", "", "", ""), HiddenColumns = character(0), VersionInfo = list(
    iSEE = structure(list(c(2L, 5L, 1L)), class = c("package_version", 
    "numeric_version"))), PanelId = c(RowDataTable = 1L), PanelHeight = 500L, 
    PanelWidth = 4L, SelectionBoxOpen = FALSE, RowSelectionSource = "---", 
    ColumnSelectionSource = "---", DataBoxOpen = FALSE, RowSelectionDynamicSource = FALSE, 
    ColumnSelectionDynamicSource = FALSE, RowSelectionRestrict = FALSE, 
    ColumnSelectionRestrict = FALSE, SelectionHistory = list())

################################################################################
# Settings for Feature assay plot 1
################################################################################

initial[["FeatureAssayPlot1"]] <- new("FeatureAssayPlot", Assay = "logcounts", XAxis = "Column data", 
    XAxisColumnData = "tissue", XAxisFeatureName = "0610005C13Rik", 
    XAxisFeatureSource = "---", XAxisFeatureDynamicSource = FALSE, 
    YAxisFeatureName = "Col1a1", YAxisFeatureSource = "RowDataTable1", 
    YAxisFeatureDynamicSource = FALSE, FacetRowByColData = "FACS.selection", 
    FacetColumnByColData = "FACS.selection", ColorByColumnData = "age", 
    ColorByFeatureNameAssay = "logcounts", ColorBySampleNameColor = "#FF0000", 
    ShapeByColumnData = "FACS.selection", SizeByColumnData = "n_genes", 
    FacetRowBy = "None", FacetColumnBy = "None", ColorBy = "None", 
    ColorByDefaultColor = "#000000", ColorByFeatureName = "0610005C13Rik", 
    ColorByFeatureSource = "---", ColorByFeatureDynamicSource = FALSE, 
    ColorBySampleName = "A10_B000497_B009023_S10.mm10-plus-0-0", 
    ColorBySampleSource = "---", ColorBySampleDynamicSource = FALSE, 
    ShapeBy = "None", SizeBy = "None", SelectionAlpha = 0.1, 
    ZoomData = numeric(0), BrushData = list(), VisualBoxOpen = FALSE, 
    VisualChoices = "Color", ContourAdd = FALSE, ContourColor = "#0000FF", 
    PointSize = 1, PointAlpha = 1, Downsample = FALSE, DownsampleResolution = 200, 
    CustomLabels = FALSE, CustomLabelsText = "A10_B000497_B009023_S10.mm10-plus-0-0", 
    FontSize = 1, LegendPointSize = 1, LegendPosition = "Bottom", 
    HoverInfo = TRUE, LabelCenters = FALSE, LabelCentersBy = "FACS.selection", 
    LabelCentersColor = "#000000", VersionInfo = list(iSEE = structure(list(
        c(2L, 5L, 1L)), class = c("package_version", "numeric_version"
    ))), PanelId = c(FeatureAssayPlot = 1L), PanelHeight = 500L, 
    PanelWidth = 4L, SelectionBoxOpen = FALSE, RowSelectionSource = "---", 
    ColumnSelectionSource = "---", DataBoxOpen = FALSE, RowSelectionDynamicSource = FALSE, 
    ColumnSelectionDynamicSource = FALSE, RowSelectionRestrict = FALSE, 
    ColumnSelectionRestrict = FALSE, SelectionHistory = list())

initial


iSEE can then be launched with the following command:

iSEE(sce_all_facs, initial = initial)
Screenshot of the iSEE app running on the FACS single cell dataset

Figure 1: Screenshot of the iSEE app running on the FACS single cell dataset

Note that these lengthy configuration options can be readily exported by clicking on the dedicated button “Display panel settings” in iSEE - we can do that anytime after we are done designing the configuration using the app interface.

Session info

sessionInfo()
#> R Under development (unstable) (2023-10-22 r85388)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.19-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] iSEE_2.15.0                 HDF5Array_1.31.0           
#>  [3] rhdf5_2.47.0                ggplot2_3.4.4              
#>  [5] TabulaMurisSenisData_1.9.0  SingleCellExperiment_1.25.0
#>  [7] SummarizedExperiment_1.33.0 Biobase_2.63.0             
#>  [9] GenomicRanges_1.55.1        GenomeInfoDb_1.39.0        
#> [11] IRanges_2.37.0              S4Vectors_0.41.1           
#> [13] BiocGenerics_0.49.0         MatrixGenerics_1.15.0      
#> [15] matrixStats_1.0.0           BiocStyle_2.31.0           
#> 
#> loaded via a namespace (and not attached):
#>   [1] RColorBrewer_1.1-3            jsonlite_1.8.7               
#>   [3] shape_1.4.6                   magrittr_2.0.3               
#>   [5] magick_2.8.1                  farver_2.1.1                 
#>   [7] rmarkdown_2.25                GlobalOptions_0.1.2          
#>   [9] zlibbioc_1.49.0               vctrs_0.6.4                  
#>  [11] memoise_2.0.1                 RCurl_1.98-1.12              
#>  [13] htmltools_0.5.6.1             S4Arrays_1.3.0               
#>  [15] AnnotationHub_3.11.0          curl_5.1.0                   
#>  [17] Rhdf5lib_1.25.0               SparseArray_1.3.0            
#>  [19] sass_0.4.7                    bslib_0.5.1                  
#>  [21] htmlwidgets_1.6.2             cachem_1.0.8                 
#>  [23] igraph_1.5.1                  mime_0.12                    
#>  [25] lifecycle_1.0.3               iterators_1.0.14             
#>  [27] pkgconfig_2.0.3               colourpicker_1.3.0           
#>  [29] Matrix_1.6-1.1                R6_2.5.1                     
#>  [31] fastmap_1.1.1                 GenomeInfoDbData_1.2.11      
#>  [33] shiny_1.7.5.1                 clue_0.3-65                  
#>  [35] digest_0.6.33                 colorspace_2.1-0             
#>  [37] AnnotationDbi_1.65.0          ExperimentHub_2.11.0         
#>  [39] RSQLite_2.3.2                 filelock_1.0.2               
#>  [41] labeling_0.4.3                fansi_1.0.5                  
#>  [43] gdata_3.0.0                   httr_1.4.7                   
#>  [45] abind_1.4-5                   mgcv_1.9-0                   
#>  [47] compiler_4.4.0                bit64_4.0.5                  
#>  [49] withr_2.5.2                   doParallel_1.0.17            
#>  [51] DBI_1.1.3                     shinyAce_0.4.2               
#>  [53] highr_0.10                    rappdirs_0.3.3               
#>  [55] DelayedArray_0.29.0           rjson_0.2.21                 
#>  [57] gtools_3.9.4                  tools_4.4.0                  
#>  [59] vipor_0.4.5                   interactiveDisplayBase_1.41.0
#>  [61] httpuv_1.6.12                 glue_1.6.2                   
#>  [63] nlme_3.1-163                  rhdf5filters_1.15.0          
#>  [65] promises_1.2.1                grid_4.4.0                   
#>  [67] cluster_2.1.4                 generics_0.1.3               
#>  [69] gtable_0.3.4                  utf8_1.2.4                   
#>  [71] XVector_0.43.0                ggrepel_0.9.4                
#>  [73] BiocVersion_3.19.1            foreach_1.5.2                
#>  [75] pillar_1.9.0                  later_1.3.1                  
#>  [77] rintrojs_0.3.3                circlize_0.4.15              
#>  [79] splines_4.4.0                 dplyr_1.1.3                  
#>  [81] BiocFileCache_2.11.1          lattice_0.22-5               
#>  [83] bit_4.0.5                     tidyselect_1.2.0             
#>  [85] ComplexHeatmap_2.19.0         Biostrings_2.71.1            
#>  [87] miniUI_0.1.1.1                knitr_1.45                   
#>  [89] bookdown_0.36                 xfun_0.40                    
#>  [91] shinydashboard_0.7.2          DT_0.30                      
#>  [93] yaml_2.3.7                    shinyWidgets_0.8.0           
#>  [95] evaluate_0.22                 codetools_0.2-19             
#>  [97] tibble_3.2.1                  BiocManager_1.30.22          
#>  [99] cli_3.6.1                     xtable_1.8-4                 
#> [101] munsell_0.5.0                 jquerylib_0.1.4              
#> [103] Rcpp_1.0.11                   dbplyr_2.4.0                 
#> [105] png_0.1-8                     parallel_4.4.0               
#> [107] ellipsis_0.3.2                blob_1.2.4                   
#> [109] bitops_1.0-7                  viridisLite_0.4.2            
#> [111] scales_1.2.1                  purrr_1.0.2                  
#> [113] crayon_1.5.2                  GetoptLong_1.0.5             
#> [115] rlang_1.1.1                   KEGGREST_1.43.0              
#> [117] shinyjs_2.1.0

References

Schaum, Nicholas, Benoit Lehallier, Oliver Hahn, Shayan Hosseinzadeh, Song E Lee, Rene Sit, Davis P Lee, et al. 2019. “The Murine Transcriptome Reveals Global Aging Nodes with Organ-Specific Phase and Amplitude.”

Tabula Muris Consortium. 2020. “A Single-Cell Transcriptomic Atlas Characterizes Ageing Tissues in the Mouse.” Nature 583 (7817): 590–95.