1 SubcellularSpatialData
The data in this package is published in the publication Bhuva et al., Genome Biology, 2024. Annotations for each dataset are obtained independently of the molecular measurements. The lowest level of measurement is annotated for each dataset. For BGI STOmics, this is each DNA nanoball, and for 10x Xenium and NanoString CosMx, these are the individual transcript detections. The package provides functions to convert these unit measurements into higher level summaries such as cells, regions, square bins, or hex bins for analysis purposes. These summaries are stored in SpatialExperiment objects.
The SubcellularSpatialData package can be downloaded as follows:
2 Download data from the SubcellularSpatialData R package
To download the data, we first need to get a list of the data
available in the SubcellularSpatialData
package and
determine the unique identifiers for each data. The query()
function assists in getting this list.
eh = ExperimentHub()
query(eh, "SubcellularSpatialData")
#> ExperimentHub with 4 records
#> # snapshotDate(): 2024-10-24
#> # $dataprovider: 10x, NanoString, BGI
#> # $species: Mus musculus, Homo sapiens
#> # $rdataclass: data.frame
#> # additional mcols(): taxonomyid, genome, description,
#> # coordinate_1_based, maintainer, rdatadateadded, preparerclass, tags,
#> # rdatapath, sourceurl, sourcetype
#> # retrieve records with, e.g., 'object[["EH8230"]]'
#>
#> title
#> EH8230 | xenium_mm_brain
#> EH8231 | stomics_mm_brain
#> EH8232 | cosmx_hs_nsclc
#> EH8567 | xenium_hs_breast_addon
Data can then be downloaded using the unique identifier.
As the datasets are large in size, the code above is not executed. Instead, we will explore the package using a subsampled dataset that is available within the package.
The data is in the form of a transcript table where the following columns are present across all datasets:
- sample_id - Unique identifier for the sample the transcript belongs to.
- cell - Unique identifier for the cell the transcript belongs to (NA if it is not allocated to any cell).
- gene - Gene name or identity of the transcript.
- genetype - Type of target (gene or control probe).
- x - x-coordinate of the transcript.
- y - y-coordinate of the transcript.
- counts - Number of transcripts detected at this location (always 1 for NanoString CosMx and 10x Xenium as each row is an individual detection).
- region - Annotated histological region for the transcript.
- technology - Name of the platform the data was sequenced on.
Additional columns may be present for different technologies.
We now visualise the data on a spatial plot
3 Summarising transcripts into cells, bins, and regions
The transcript table is highly detailed containing a low-level form
of measurement. Users may be more interestered in working on binned
counts, cellular counts, or region-specific pseudo-bulked samples. These
can be obtained using the helper function tx2spe()
. For
cellular counts, the original cell binning provided by the vendor is
used. Transcript aggregation is performed separately per sample
therefore users do not need to separate data per sample.
Please note that BGI only performs nuclear binning of counts therefore cellular counts obtained will represent nuclear counts only. We recommended that for fair evaluations during benchmarking, alternative binning algorithms that are fair are explored, or analysis be performed on square or hex binned counts.
library(SpatialExperiment)
# summarising counts per cell
tx2spe(tx_small, bin = "cell")
#> class: SpatialExperiment
#> dim: 489 92394
#> metadata(0):
#> assays(1): counts
#> rownames(489): MLPH PGR ... NegControlCodeword_0524
#> NegControlProbe_00009
#> rowData names(2): gene genetype
#> colnames(92394): IDC_10 IDC_100005 ... ILC_99993 ILC_99994
#> colData names(8): sample_id cell_id ... region technology
#> reducedDimNames(0):
#> mainExpName: NULL
#> altExpNames(0):
#> spatialCoords names(2) : x y
#> imgData names(0):
# summarising counts per square bin
tx2spe(tx_small, bin = "square", nbins = 30)
#> class: SpatialExperiment
#> dim: 489 1458
#> metadata(0):
#> assays(1): counts
#> rownames(489): MLPH PGR ... BLANK_0406 NegControlCodeword_0524
#> rowData names(2): gene genetype
#> colnames(1458): IDC_4 IDC_5 ... ILC_822 ILC_828
#> colData names(13): sample_id bin_id ... region technology
#> reducedDimNames(0):
#> mainExpName: NULL
#> altExpNames(0):
#> spatialCoords names(2) : x y
#> imgData names(0):
# summarising counts per hex bin
tx2spe(tx_small, bin = "hex", nbins = 30)
#> class: SpatialExperiment
#> dim: 489 1654
#> metadata(0):
#> assays(1): counts
#> rownames(489): MLPH PGR ... BLANK_0406 NegControlCodeword_0524
#> rowData names(2): gene genetype
#> colnames(1654): IDC_6 IDC_7 ... ILC_1077 ILC_1103
#> colData names(15): sample_id bin_id ... region technology
#> reducedDimNames(0):
#> mainExpName: NULL
#> altExpNames(0):
#> spatialCoords names(2) : x y
#> imgData names(0):
# summarising counts per region
tx2spe(tx_small, bin = "region")
#> class: SpatialExperiment
#> dim: 489 14
#> metadata(0):
#> assays(1): counts
#> rownames(489): MLPH PGR ... BLANK_0406 NegControlCodeword_0524
#> rowData names(2): gene genetype
#> colnames(14): IDC_Adipose tissue (fat) IDC_Blood vessels ... ILC_Normal
#> ducts ILC_Stroma
#> colData names(10): sample_id bin_id ... region technology
#> reducedDimNames(0):
#> mainExpName: NULL
#> altExpNames(0):
#> spatialCoords names(2) : x y
#> imgData names(0):
When transcript counts are aggregated (using any approach),
aggregation of numeric columns is performed using the
mean(..., na.rm = TRUE)
function and aggregation of
character/factor columns is performed such that the most frequent class
becomes the representative class. As such, for a hex bin, the highest
frequency region for the transcripts allocated to the bin becomes the
bin’s region annotation. New coordinates for cells, bins, or regions are
computed using the mean function as well, therefore represent the center
of mass for the object. For hex and square bins, the average coordinate
is computed by default, however, x and y indices for the bin are stored
in the colData under the bin_x and bin_y columns.
When aggregation is perfomed using bins or regions, an additional column, ncells, is computed that indicates how many unique cells are present within the bin/region. Do note that if a cell overlaps multiple bins/regions, it will be counted in each bin/region.
4 Session Info
sessionInfo()
#> R Under development (unstable) (2024-10-21 r87258)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04.1 LTS
#>
#> Matrix products: default
#> BLAS: /home/biocbuild/bbs-3.21-bioc/R/lib/libRblas.so
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.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] SpatialExperiment_1.15.1 SingleCellExperiment_1.27.2
#> [3] SummarizedExperiment_1.35.5 Biobase_2.65.1
#> [5] GenomicRanges_1.57.2 GenomeInfoDb_1.41.2
#> [7] IRanges_2.39.2 S4Vectors_0.43.2
#> [9] MatrixGenerics_1.17.1 matrixStats_1.4.1
#> [11] ggplot2_3.5.1 ExperimentHub_2.13.1
#> [13] AnnotationHub_3.13.3 BiocFileCache_2.13.2
#> [15] dbplyr_2.5.0 BiocGenerics_0.51.3
#> [17] SubcellularSpatialData_1.1.3
#>
#> loaded via a namespace (and not attached):
#> [1] tidyselect_1.2.1 dplyr_1.1.4 farver_2.1.2
#> [4] blob_1.2.4 filelock_1.0.3 Biostrings_2.73.2
#> [7] fastmap_1.2.0 digest_0.6.37 mime_0.12
#> [10] lifecycle_1.0.4 KEGGREST_1.45.1 RSQLite_2.3.7
#> [13] magrittr_2.0.3 compiler_4.5.0 rlang_1.1.4
#> [16] sass_0.4.9 tools_4.5.0 utf8_1.2.4
#> [19] yaml_2.3.10 knitr_1.48 S4Arrays_1.5.11
#> [22] labeling_0.4.3 bit_4.5.0 curl_5.2.3
#> [25] DelayedArray_0.31.14 RColorBrewer_1.1-3 abind_1.4-8
#> [28] withr_3.0.1 purrr_1.0.2 grid_4.5.0
#> [31] fansi_1.0.6 colorspace_2.1-1 scales_1.3.0
#> [34] cli_3.6.3 rmarkdown_2.28 crayon_1.5.3
#> [37] generics_0.1.3 rjson_0.2.23 httr_1.4.7
#> [40] DBI_1.2.3 cachem_1.1.0 zlibbioc_1.51.2
#> [43] AnnotationDbi_1.67.0 BiocManager_1.30.25 XVector_0.45.0
#> [46] vctrs_0.6.5 Matrix_1.7-1 jsonlite_1.8.9
#> [49] bit64_4.5.2 magick_2.8.5 hexbin_1.28.4
#> [52] jquerylib_0.1.4 glue_1.8.0 gtable_0.3.6
#> [55] BiocVersion_3.20.0 UCSC.utils_1.1.0 munsell_0.5.1
#> [58] tibble_3.2.1 pillar_1.9.0 rappdirs_0.3.3
#> [61] htmltools_0.5.8.1 GenomeInfoDbData_1.2.13 R6_2.5.1
#> [64] evaluate_1.0.1 lattice_0.22-6 highr_0.11
#> [67] png_0.1-8 memoise_2.0.1 BiocStyle_2.33.1
#> [70] bslib_0.8.0 Rcpp_1.0.13 SparseArray_1.5.45
#> [73] xfun_0.48 prettydoc_0.4.1 pkgconfig_2.0.3