brianhie / scanorama

Panoramic stitching of single cell data
http://scanorama.csail.mit.edu
MIT License
265 stars 49 forks source link

module 'scanorama' has no attribute #144

Closed ChiaraCaprioli closed 1 year ago

ChiaraCaprioli commented 1 year ago

Hi,

I am trying to run scanorama in R via reticulate, latest version. I installed scanorama via git cloning, after installing python-annoy from conda. It seems correctly installed, as there is no error when trying to import by both reticulate::import('scanorama') in R and import scanorama in python. However, when calling integrated.corrected.data <- scanorama$correct(assaylist, genes_list, return_dimred=TRUE, return_dense=TRUE), the following error is raised: Error in py_get_attr_impl(x, name, silent) : AttributeError: module 'scanorama' has no attribute 'correct'. Same in python: AttributeError: module 'scanorama' has no attribute 'correct' Can you help me figure out what's wrong? Thank you

C