At present, trying to convert an SCE containing a DelayedMatrix to AnnData gives you:
ad: anndata.AnnData = anndata2ri.rpy2py(sce)
UserWarning: Encountered Matrix class that is not supported: {'DelayedMatrix'}
warn(f'Encountered Matrix class that is not supported: {r_classes}')
Notably zellkonverter does handle DelayedMatrix appropriately. I wonder if the same functionality could be leveraged here to solve this issue?
At present, trying to convert an SCE containing a
DelayedMatrixto AnnData gives you:Notably
zellkonverterdoes handleDelayedMatrixappropriately. I wonder if the same functionality could be leveraged here to solve this issue?