You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm having issues when running milo workflow when count data is DelayedMatrix, is there compatibility with alabaster.sce and DelayedArray ?
This currently won't work:
library(alabaster.sce)
library(SingleCellExperiment)
library(miloR)
milo <- Milo(sce)
# save SCE with alabaster.sce
fsave <- file.path(out_dir, "milo_obj")
saveObject(milo, fsave)
rm(milo)
# read saved object
milo <- readObject(fsave)
milo <- buildGraph(milo, k = 20, d = 30, reduced.dim = "PCA")
Error: unable to find an inherited method for function ‘findKNN’ for signature ‘X = "DelayedMatrix"’
any suggestions?
Thanks
The text was updated successfully, but these errors were encountered:
Hi @alikhuseynov - the buildGraph function from Milo uses BiocNeighbors findKNN(), so you may want to double-check the compatability/versions you have installed for BiocNeighbours and DelayedArray data types.
Hi, I'm having issues when running milo workflow when count data is
DelayedMatrix
, is there compatibility withalabaster.sce
andDelayedArray
?This currently won't work:
any suggestions?
Thanks
The text was updated successfully, but these errors were encountered: