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
I'm trying to annotate cell type of my spatial transcriptomics data, generated by VISIUM HD.
When i ran RCTD <- run.RCTD(RCTD, doublet_mode = "doublet") , i got the following error:
Loading required package: spacexr
Error in { :
task 1 failed - "could not find function "solveIRWLS.weights""
I digged deeper trying with the 3 functions :
RCTD <-fitBulk(RCTD)
RCTD <- choose_sigma_c(RCTD,)
RCTD <- fitPixels(RCTD, doublet_mode = "doublet")
It output the same error at choose_sigma_c(RCTD) step.
Could you help me to work this out please?
Many thanks
The text was updated successfully, but these errors were encountered:
Oh, my problem is just resolved when i specify max_cores = 1 instead of 4 in the previous function create.RCTD(query, reference, max_cores = 1). Maybe due to the multicores configuration on my cloud posit.
I encountered the same issue when setting max_cores higher than 1. For me it's caused by the parallel backend with parallel::makeCluster not working properly. I created a repo here (https://github.com/Liuy12/spacexr), and commented out the parallel backend registering steps within spacexr. After installing this version, it worked for me.
@Liuy12 Thank you very much for doing this as it worked when installing from your fork. It's a simple error that wasn't compatible with my HPC set up and you commenting it out worked perfectly.
Hi,
I'm trying to annotate cell type of my spatial transcriptomics data, generated by VISIUM HD.
When i ran RCTD <- run.RCTD(RCTD, doublet_mode = "doublet") , i got the following error:
Loading required package: spacexr
Error in { :
task 1 failed - "could not find function "solveIRWLS.weights""
I digged deeper trying with the 3 functions :
RCTD <-fitBulk(RCTD)
RCTD <- choose_sigma_c(RCTD,)
RCTD <- fitPixels(RCTD, doublet_mode = "doublet")
It output the same error at choose_sigma_c(RCTD) step.
Could you help me to work this out please?
Many thanks
The text was updated successfully, but these errors were encountered: