TabulaMurisData 1.8.0
The TabulaMurisData
data package provides access to the 10x and SmartSeq2
single-cell RNA-seq data sets from
the Tabula Muris Consortium.
The contents of the package can be seen by querying the ExperimentHub for the
package name.
suppressPackageStartupMessages({
library(ExperimentHub)
library(SingleCellExperiment)
library(TabulaMurisData)
})
#> snapshotDate(): 2020-10-02
eh <- ExperimentHub()
#> snapshotDate(): 2020-10-02
query(eh, "TabulaMurisData")
#> ExperimentHub with 2 records
#> # snapshotDate(): 2020-10-02
#> # $dataprovider: Tabula Muris Consortium
#> # $species: Mus musculus
#> # $rdataclass: SingleCellExperiment
#> # additional mcols(): taxonomyid, genome, description,
#> # coordinate_1_based, maintainer, rdatadateadded, preparerclass, tags,
#> # rdatapath, sourceurl, sourcetype
#> # retrieve records with, e.g., 'object[["EH1617"]]'
#>
#> title
#> EH1617 | TabulaMurisDroplet
#> EH1618 | TabulaMurisSmartSeq2
The individual data sets can be accessed using either their ExperimentHub accession number, or the convenience functions provided in this package. For example, for the 10x data:
droplet <- eh[["EH1617"]]
#> see ?TabulaMurisData and browseVignettes('TabulaMurisData') for documentation
#> loading from cache
droplet
#> class: SingleCellExperiment
#> dim: 23341 70118
#> metadata(0):
#> assays(1): counts
#> rownames(23341): 0610005C13Rik 0610007C21Rik ... Zzef1 Zzz3
#> rowData names(2): ID Symbol
#> colnames(70118): 10X_P4_0_AAACCTGAGATTACCC 10X_P4_0_AAACCTGAGTGCCAGA
#> ... 10X_P8_15_TTTGTCATCTTACCGC 10X_P8_15_TTTGTCATCTTGTTTG
#> colData names(10): cell channel ... cell_ontology_id free_annotation
#> reducedDimNames(0):
#> altExpNames(0):
droplet <- TabulaMurisDroplet()
#> snapshotDate(): 2020-10-02
#> see ?TabulaMurisData and browseVignettes('TabulaMurisData') for documentation
#> loading from cache
droplet
#> class: SingleCellExperiment
#> dim: 23341 70118
#> metadata(0):
#> assays(1): counts
#> rownames(23341): 0610005C13Rik 0610007C21Rik ... Zzef1 Zzz3
#> rowData names(2): ID Symbol
#> colnames(70118): 10X_P4_0_AAACCTGAGATTACCC 10X_P4_0_AAACCTGAGTGCCAGA
#> ... 10X_P8_15_TTTGTCATCTTACCGC 10X_P8_15_TTTGTCATCTTGTTTG
#> colData names(10): cell channel ... cell_ontology_id free_annotation
#> reducedDimNames(0):
#> altExpNames(0):
iSEE
Each data set is provided in the form of a SingleCellExperiment
object. To
gain further insights into the contents of the data sets, they can be explored
using, e.g., the iSEE package. For the purposes of this vignette,
we first subsample a small subset of the cells in the 10x data set, to reduce
the run time.
set.seed(1234)
se <- droplet[, sample(seq_len(ncol(droplet)), 250, replace = FALSE)]
se
#> class: SingleCellExperiment
#> dim: 23341 250
#> metadata(0):
#> assays(1): counts
#> rownames(23341): 0610005C13Rik 0610007C21Rik ... Zzef1 Zzz3
#> rowData names(2): ID Symbol
#> colnames(250): 10X_P8_12_ACGGGCTGTCAGAGGT 10X_P7_10_CGTCCATGTTATGCGT
#> ... 10X_P7_9_TGACAACGTGTAAGTA 10X_P8_14_GATCTAGCACGGCCAT
#> colData names(10): cell channel ... cell_ontology_id free_annotation
#> reducedDimNames(0):
#> altExpNames(0):
Next, we calculate size factors and normalize the data using the scran and scater packages, and perform dimension reduction using PCA and t-SNE.
se <- scran::computeSumFactors(se)
se <- scater::logNormCounts(se)
se <- scater::runPCA(se)
se <- scater::runTSNE(se)
Finally, we call iSEE
with the subsampled SingleCellExperiment
object. This
opens up an instance of iSEE
containing the provided data set.
if (require(iSEE)) {
iSEE(se)
}
sessionInfo()
#> R version 4.0.3 (2020-10-10)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 18.04.5 LTS
#>
#> Matrix products: default
#> BLAS: /home/biocbuild/bbs-3.12-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.12-bioc/R/lib/libRlapack.so
#>
#> locale:
#> [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
#> [3] LC_TIME=en_US.UTF-8 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 parallel stats graphics grDevices utils datasets
#> [8] methods base
#>
#> other attached packages:
#> [1] TabulaMurisData_1.8.0 SingleCellExperiment_1.12.0
#> [3] SummarizedExperiment_1.20.0 Biobase_2.50.0
#> [5] GenomicRanges_1.42.0 GenomeInfoDb_1.26.0
#> [7] IRanges_2.24.0 S4Vectors_0.28.0
#> [9] MatrixGenerics_1.2.0 matrixStats_0.57.0
#> [11] ExperimentHub_1.16.0 AnnotationHub_2.22.0
#> [13] BiocFileCache_1.14.0 dbplyr_1.4.4
#> [15] BiocGenerics_0.36.0 BiocStyle_2.18.0
#>
#> loaded via a namespace (and not attached):
#> [1] bitops_1.0-6 bit64_4.0.5
#> [3] httr_1.4.2 tools_4.0.3
#> [5] R6_2.5.0 irlba_2.3.3
#> [7] vipor_0.4.5 colorspace_1.4-1
#> [9] DBI_1.1.0 gridExtra_2.3
#> [11] tidyselect_1.1.0 bit_4.0.4
#> [13] curl_4.3 compiler_4.0.3
#> [15] BiocNeighbors_1.8.0 DelayedArray_0.16.0
#> [17] bookdown_0.21 scales_1.1.1
#> [19] rappdirs_0.3.1 stringr_1.4.0
#> [21] digest_0.6.27 rmarkdown_2.5
#> [23] XVector_0.30.0 scater_1.18.0
#> [25] pkgconfig_2.0.3 htmltools_0.5.0
#> [27] sparseMatrixStats_1.2.0 fastmap_1.0.1
#> [29] limma_3.46.0 rlang_0.4.8
#> [31] RSQLite_2.2.1 shiny_1.5.0
#> [33] DelayedMatrixStats_1.12.0 generics_0.0.2
#> [35] BiocParallel_1.24.0 dplyr_1.0.2
#> [37] RCurl_1.98-1.2 magrittr_1.5
#> [39] BiocSingular_1.6.0 GenomeInfoDbData_1.2.4
#> [41] scuttle_1.0.0 Matrix_1.2-18
#> [43] Rcpp_1.0.5 ggbeeswarm_0.6.0
#> [45] munsell_0.5.0 viridis_0.5.1
#> [47] lifecycle_0.2.0 stringi_1.5.3
#> [49] yaml_2.2.1 edgeR_3.32.0
#> [51] zlibbioc_1.36.0 Rtsne_0.15
#> [53] grid_4.0.3 blob_1.2.1
#> [55] promises_1.1.1 dqrng_0.2.1
#> [57] crayon_1.3.4 lattice_0.20-41
#> [59] beachmat_2.6.0 locfit_1.5-9.4
#> [61] knitr_1.30 pillar_1.4.6
#> [63] igraph_1.2.6 glue_1.4.2
#> [65] BiocVersion_3.12.0 evaluate_0.14
#> [67] scran_1.18.0 BiocManager_1.30.10
#> [69] vctrs_0.3.4 httpuv_1.5.4
#> [71] gtable_0.3.0 purrr_0.3.4
#> [73] assertthat_0.2.1 ggplot2_3.3.2
#> [75] xfun_0.18 rsvd_1.0.3
#> [77] mime_0.9 xtable_1.8-4
#> [79] later_1.1.0.1 viridisLite_0.3.0
#> [81] tibble_3.0.4 beeswarm_0.2.3
#> [83] AnnotationDbi_1.52.0 memoise_1.1.0
#> [85] bluster_1.0.0 statmod_1.4.35
#> [87] ellipsis_0.3.1 interactiveDisplayBase_1.28.0