This worked 2022/06/16. Run:
docker run -v ${PWD}:/pwd -it bioconductor/bioconductor_docker:RELEASE_3_15 /bin/sh
cd /pwd
R
Inside R prompt install dependencies:
devtools::install_github("cellgeni/sceasy")
library(sceasy)
use_condaenv('r-reticulate')
In another shell install anndata:
conda activate r-reticulate
conda install -c conda-forge anndata
And finally 😭:
sce <- readRDS("/pwd/SingleCellExperiment_final.rds")
adata <- SCE2AnnData(sce)>