Description Usage Arguments Details Value Examples
View source: R/importAnnData.R
This function reads in one or more Python AnnData files in the .h5ad format and returns a single SingleCellExperiment object containing all the AnnData samples by concatenating their counts matrices and related information slots.
1 | importAnnData(sampleDirs = NULL, sampleNames = NULL, delayedArray = TRUE)
|
sampleDirs |
Folder containing the .h5ad file. Can be one of -
|
sampleNames |
The prefix/name of the .h5ad file without the .h5ad extension
e.g. if 'sample.h5ad' is the filename, pass
|
delayedArray |
Boolean. Whether to read the expression matrix as
DelayedArray object. Default |
importAnnData
converts scRNA-seq data in the AnnData format to the
SingleCellExperiment
object. The .X slot in AnnData is transposed to the features x cells
format and becomes the 'counts' matrix in the assay slot. The .vars AnnData slot becomes the SCE rowData
and the .obs AnnData slot becomes the SCE colData. Multidimensional data in the .obsm AnnData slot is
ported over to the SCE reducedDims slot. Additionally, unstructured data in the .uns AnnData slot is
available through the SCE metadata slot.
There are 2 currently known minor issues -
Anndata python module depends on another python module h5pyto read hd5 format files.
If there are errors reading the .h5ad files, such as "ValueError: invalid shape in fixed-type tuple."
the user will need to do downgrade h5py by running pip3 install --user h5py==2.9.0
Additionally there might be errors in converting some python objects in the unstructured data slots.
There are no known R solutions at present. Refer https://github.com/rstudio/reticulate/issues/209
A SingleCellExperiment
object.
1 2 3 4 5 6 | file.path <- system.file("extdata/annData_pbmc_3k", package = "singleCellTK")
## Not run:
sce <- importAnnData(sampleDirs = file.path,
sampleNames = 'pbmc3k_20by20')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.