anndata2ri 1.3.2

Creator: bradpython12

Last updated:

Add to Cart

Description:

anndata2ri 1.3.2

AnnData ↭ SingleCellExperiment
RPy2 converter from AnnData to SingleCellExperiment and back. (For details about conversion see the docs)
You can for example use it to process your data using both Scanpy and Seurat, as described in this example notebook

Installation
pip install anndata2ri
# or
conda install -c bioconda anndata2ri


Troubleshooting
If you have problems installing or importing anndata2ri,
please make sure you first:

Check the stack trace:
If the error happens while installing or importing a dependency such as rpy2,
report your problem in that project’s bug tracker.
Search the issues.
At the time of writing 17 of the 29 bugs (60%) are invalid or rpy2 bugs / install problems.
Make sure you have a compatible R version: rpy2 requires R ≥ 3.6.



Usage from Python
Either use the converter manually …
import anndata2ri
from rpy2.robjects import r
from rpy2.robjects.conversion import localconverter

with localconverter(anndata2ri.converter):
adata = r('as(some_data, "SingleCellExperiment")')
… or activate it globally:
import anndata2ri
from rpy2.robjects import r
anndata2ri.activate()

adata = r('as(some_data, "SingleCellExperiment")')


Usage from Jupyter
Activate the conversion before you load the extension:
import anndata2ri
anndata2ri.activate()
%load_ext rpy2.ipython
Now you can move objects from Python to R …
import scanpy.datasets as scd
adata_paul = scd.paul15()
%%R -i adata_paul
adata_paul # class: SingleCellExperiment ...
… and back:
%%R -o adata_allen
data(allen, package = 'scRNAseq')
adata_allen <- as(allen, 'SingleCellExperiment')
print(adata_allen) # AnnData object with ...

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.