Public Data Integration using Sfaira
Alexander Dietrich
Source:vignettes/sfaira_vignette.Rmd
sfaira_vignette.Rmd
Sfaira Integeration
This vignette will cover the integration of the public database
Sfaria.
Setup
As a public database, sfaira (Fischer et al.
2020) is used, which is a dataset and model repository for
single-cell RNA-sequencing data. It gives access to about multiple
datasets from human and mouse with more than 3 million cells in total.
You can browse them interactively here: https://theislab.github.io/sfaira-portal/Datasets.
Note that only annotated datasets will be downloaded! Also there are
cases of datasets, which have private URLs and cannot be automatically
downloaded; SimBu will skip these datasets.
In order to use this database, we first need to install it. This can
easily be done, by running the setup_sfaira()
function for
the first time. In the background we use the basilisik
package to establish a conda environment that has all sfaira
dependencies installed. The installation will be only performed one
single time, even if you close your R session and call
setup_sfaira()
again. The given directory serves as the
storage for all future downloaded datasets from sfaira:
setup_list <- SimBu::setup_sfaira(basedir = tempdir())
Creating a dataset
We will now create a dataset of samples from human pancreas using the
organisms
and tissues
parameter. You can
provide a single word (like we do here) or for example a list of tissues
you want to download: c("pancreas","lung")
. An additional
parameter is the assays
parameter, where you subset the
database further to only download datasets from certain sequencing
assays (for examples Smart-seq2
).
The name
parameter is used later on to give each sample
(cell) a unique name.
ds_pancrease <- SimBu::dataset_sfaira_multiple(
sfaira_setup = setup_list,
organisms = "Homo sapiens",
tissues = "pancreas",
name = "human_pancreas"
)
Currently there are three datasets in sfaira from human pancreas,
which have cell-type annotation. The package will download them for you
automatically and merge them together into a single expression matrix
and a streamlined annotation table, which we can use for our
simulation.
It can happen, that some datasets from sfaira are not (yet) ready for
the automatic download, an error message will then appear in R, telling
you which file to download and where to put it.
If you wish to see all datasets which are included in sfaira you can use the following command:
all_datasets <- SimBu::sfaira_overview(setup_list = setup_list)
head(all_datasets)
This allows you to find the specific IDs of datasets, which you can download directly:
SimBu::dataset_sfaira(
sfaira_id = "homosapiens_lungparenchyma_2019_10x3v2_madissoon_001_10.1186/s13059-019-1906-x",
sfaira_setup = setup_list,
name = "dataset_by_id"
)
utils::sessionInfo()
#> R version 4.2.1 (2022-06-23)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 22.04.1 LTS
#>
#> Matrix products: default
#> BLAS: /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
#> 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_US.UTF-8 LC_COLLATE=en_US.UTF-8
#> [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] base
#>
#> other attached packages:
#> [1] SimBu_1.5.2
#>
#> loaded via a namespace (and not attached):
#> [1] rstudioapi_0.14 knitr_1.40 magrittr_2.0.3 grDevices_4.2.1
#> [5] R6_2.5.1 ragg_1.2.4 rlang_1.1.1 fastmap_1.1.1
#> [9] stringr_1.5.0 tools_4.2.1 utils_4.2.1 xfun_0.34
#> [13] cli_3.6.1 jquerylib_0.1.4 systemfonts_1.0.4 htmltools_0.5.3
#> [17] stats_4.2.1 yaml_2.3.6 digest_0.6.30 rprojroot_2.0.3
#> [21] lifecycle_1.0.3 pkgdown_2.0.6 textshaping_0.3.6 purrr_1.0.1
#> [25] sass_0.4.2 graphics_4.2.1 vctrs_0.6.3 fs_1.5.2
#> [29] memoise_2.0.1 glue_1.6.2 cachem_1.0.7 evaluate_0.17
#> [33] rmarkdown_2.17 stringi_1.7.12 compiler_4.2.1 bslib_0.4.1
#> [37] methods_4.2.1 desc_1.4.2 jsonlite_1.8.4