This package is intended as a convenient way to load a subset of the snRNA-seq dataset published in Hodge, et al. (2019) in R for analysis.
It contains data for 50 nuclei per cluster using an updated transcriptome alignment consistent with all Allen Institute data sets in 2023. Processed data for all cells is available at https://portal.brain-map.org/atlases-and-data/rnaseq and all raw data is available for controlled access in the NeMO Archives.
There are only 3 data objects in this package, and no functions. They are:
1. metadata_Hodge2019.rda: A data.frame with annotations for each sample. See ?metadata_Hodge2019 for descriptions of each column.
2. data_Hodge2019.rda: A matrix of read counts for all genes using a new transcriptome alignment.
3. dend_Hodge2019.rda: An R dendrogram variable organizing clusters in the same way as presented in Hodge, et al. (2019).
The package can be installed from Github using the devtools package:
devtools::install_github("AllenInstitute/hodge2019data")Once installed, the dataset will be placed in the user’s R LazyLoad database, and can be easily retrieved:
library(hodge2019data)
annotations <- metadata_Hodge2019
counts <- data_Hodge2019If you use this package, please cite the original publication, Hodge, et al. (2019). Details can be found using
citation("hodge2019data")The license for this package is available on Github at: https://github.com/AllenInstitute/hodge2019data/blob/master/LICENSE