1 Overview

This package provides a lightweight interface between the Bioconductor SingleCellExperiment data structure and the Python AnnData-based single-cell analysis environment. The idea is to enable users and developers to easily move data between these frameworks to construct a multi-language analysis pipeline across R/Bioconductor and Python.

2 Reading and writing H5AD files

The readH5AD() function can be used to read a SingleCellExperiment from a H5AD file. This can be manipulated in the usual way as described in the SingleCellExperiment documentation.

library(zellkonverter)

# Obtaining an example H5AD file.
example_h5ad <- system.file("extdata", "krumsiek11.h5ad",
                            package = "zellkonverter")
readH5AD(example_h5ad)
## class: SingleCellExperiment 
## dim: 11 640 
## metadata(2): highlights iroot
## assays(1): X
## rownames(11): Gata2 Gata1 ... EgrNab Gfi1
## rowData names(0):
## colnames(640): 0 1 ... 158-3 159-3
## colData names(1): cell_type
## reducedDimNames(0):
## mainExpName: NULL
## altExpNames(0):

We can also write a SingleCellExperiment to a H5AD file with the writeH5AD() function. This is demonstrated below on the classic Zeisel mouse brain dataset from the scRNAseq package. The resulting file can then be directly used in compatible Python-based analysis frameworks.

library(scRNAseq)

sce_zeisel <- ZeiselBrainData()
out_path <- tempfile(pattern = ".h5ad")
writeH5AD(sce_zeisel, file = out_path)

3 Converting between SingleCellExperiment and AnnData objects

Developers and power users who control their Python environments can directly convert between SingleCellExperiment and AnnData objects using the SCE2AnnData() and AnnData2SCE() utilities. These functions expect that reticulate has already been loaded along with an appropriate version of the anndata package. We suggest using the basilisk package to set up the Python environment before using these functions.

library(basilisk)
library(scRNAseq)

seger <- SegerstolpePancreasData()
roundtrip <- basiliskRun(fun = function(sce) {
     # Convert SCE to AnnData:
     adata <- SCE2AnnData(sce)

     # Maybe do some work in Python on 'adata':
     # BLAH BLAH BLAH

     # Convert back to an SCE:
     AnnData2SCE(adata)
}, env = zellkonverterAnnDataEnv(), sce = seger)

Package developers can guarantee that they are using the same versions of Python packages as zellkonverter by using the AnnDataDependencies() function to set up their Python environments.

AnnDataDependencies()
## [1] "anndata==0.10.2" "h5py==3.10.0"    "hdf5==1.14.2"    "natsort==8.4.0" 
## [5] "numpy==1.26.0"   "packaging==23.2" "pandas==2.1.1"   "python==3.11.5" 
## [9] "scipy==1.11.3"

This function can also be used to return dependencies for environments using older versions of anndata.

AnnDataDependencies(version = "0.7.6")
##  [1] "anndata==0.7.6"  "h5py==3.2.1"     "hdf5==1.10.6"    "natsort==7.1.1" 
##  [5] "numpy==1.20.2"   "packaging==20.9" "pandas==1.2.4"   "python==3.7.10" 
##  [9] "scipy==1.6.3"    "sqlite==3.35.5"

4 Progress messages

By default the functions in zellkonverter don’t display any information about their progress but this can be turned on by setting the verbose = TRUE argument.

readH5AD(example_h5ad, verbose = TRUE)
## class: SingleCellExperiment 
## dim: 11 640 
## metadata(2): highlights iroot
## assays(1): X
## rownames(11): Gata2 Gata1 ... EgrNab Gfi1
## rowData names(0):
## colnames(640): 0 1 ... 158-3 159-3
## colData names(1): cell_type
## reducedDimNames(0):
## mainExpName: NULL
## altExpNames(0):

If you would like to see progress messages for all functions by default you can turn this on using the setZellkonverterVerbose() function.

# This is not run here 
setZellkonverterVerbose(TRUE)

5 Session information

sessionInfo()
## R version 4.3.2 Patched (2023-11-13 r85521)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.18-bioc/R/lib/libRblas.so 
## 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_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] basilisk_1.14.0             scRNAseq_2.16.0            
##  [3] SingleCellExperiment_1.24.0 SummarizedExperiment_1.32.0
##  [5] Biobase_2.62.0              GenomicRanges_1.54.1       
##  [7] GenomeInfoDb_1.38.1         IRanges_2.36.0             
##  [9] S4Vectors_0.40.1            BiocGenerics_0.48.1        
## [11] MatrixGenerics_1.14.0       matrixStats_1.1.0          
## [13] zellkonverter_1.12.1        knitr_1.45                 
## [15] BiocStyle_2.30.0           
## 
## loaded via a namespace (and not attached):
##  [1] DBI_1.1.3                     bitops_1.0-7                 
##  [3] biomaRt_2.58.0                rlang_1.1.2                  
##  [5] magrittr_2.0.3                compiler_4.3.2               
##  [7] RSQLite_2.3.3                 GenomicFeatures_1.54.1       
##  [9] dir.expiry_1.10.0             png_0.1-8                    
## [11] vctrs_0.6.4                   ProtGenerics_1.34.0          
## [13] stringr_1.5.0                 pkgconfig_2.0.3              
## [15] crayon_1.5.2                  fastmap_1.1.1                
## [17] dbplyr_2.4.0                  XVector_0.42.0               
## [19] ellipsis_0.3.2                utf8_1.2.4                   
## [21] Rsamtools_2.18.0              promises_1.2.1               
## [23] rmarkdown_2.25                purrr_1.0.2                  
## [25] bit_4.0.5                     xfun_0.41                    
## [27] zlibbioc_1.48.0               cachem_1.0.8                 
## [29] jsonlite_1.8.7                progress_1.2.2               
## [31] blob_1.2.4                    later_1.3.1                  
## [33] DelayedArray_0.28.0           BiocParallel_1.36.0          
## [35] interactiveDisplayBase_1.40.0 parallel_4.3.2               
## [37] prettyunits_1.2.0             R6_2.5.1                     
## [39] bslib_0.5.1                   stringi_1.8.1                
## [41] reticulate_1.34.0             rtracklayer_1.62.0           
## [43] jquerylib_0.1.4               Rcpp_1.0.11                  
## [45] bookdown_0.36                 httpuv_1.6.12                
## [47] Matrix_1.6-3                  tidyselect_1.2.0             
## [49] abind_1.4-5                   yaml_2.3.7                   
## [51] codetools_0.2-19              curl_5.1.0                   
## [53] lattice_0.22-5                tibble_3.2.1                 
## [55] shiny_1.7.5.1                 basilisk.utils_1.14.0        
## [57] withr_2.5.2                   KEGGREST_1.42.0              
## [59] evaluate_0.23                 BiocFileCache_2.10.1         
## [61] xml2_1.3.5                    ExperimentHub_2.10.0         
## [63] Biostrings_2.70.1             pillar_1.9.0                 
## [65] BiocManager_1.30.22           filelock_1.0.2               
## [67] generics_0.1.3                RCurl_1.98-1.13              
## [69] ensembldb_2.26.0              BiocVersion_3.18.0           
## [71] hms_1.1.3                     xtable_1.8-4                 
## [73] glue_1.6.2                    lazyeval_0.2.2               
## [75] tools_4.3.2                   AnnotationHub_3.10.0         
## [77] BiocIO_1.12.0                 GenomicAlignments_1.38.0     
## [79] XML_3.99-0.15                 grid_4.3.2                   
## [81] AnnotationDbi_1.64.1          GenomeInfoDbData_1.2.11      
## [83] restfulr_0.0.15               cli_3.6.1                    
## [85] rappdirs_0.3.3                fansi_1.0.5                  
## [87] S4Arrays_1.2.0                dplyr_1.1.3                  
## [89] AnnotationFilter_1.26.0       sass_0.4.7                   
## [91] digest_0.6.33                 SparseArray_1.2.2            
## [93] rjson_0.2.21                  memoise_2.0.1                
## [95] htmltools_0.5.7               lifecycle_1.0.4              
## [97] httr_1.4.7                    mime_0.12                    
## [99] bit64_4.0.5