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
Very nice package, thanks for the work. When I ran createSCEobject function with your example data (the following code), I ran into the following error. When I looked for similar issues I figured out it is due to Matrix package version. So downgrading Matrix to 1.6-1 will fix the problem but in that case Seurat will not load since SeuratObject requires Matrix>=1.6-3.
library(scX)
cseo <- createSCEobject(xx = scXample,
partitionVars = "inferred_cell_type",
metadataVars = c("source_name", "age", "sex", "strain", "treatment", "pseudotime"),
descriptionText = "Quick Start Guide")
launch_scX(cseo)
Creating SCE object... Finished
Changing factors from partitionVars... Finished
Computing QC metrics... Finished
Computing normalization...Error in (function (A, nv = 5, nu = nv, maxit = 1000, work = nv + 7, reorth = TRUE, :
function 'as_cholmod_sparse' not provided by package 'Matrix'
The text was updated successfully, but these errors were encountered:
That is indeed an issue with the latest version of Matrix, relative to irlba which calls that function. As reported in bwlewis/irlba#70, re-installing that package after having the latest Matrix version fixes that:
cds = preprocess_cds(cds, num_dim = 100)
Error in (function (A, nv = 5, nu = nv, maxit = 1000, work = nv + 7, reorth = TRUE, :
function 'as_cholmod_sparse' not provided by package 'Matrix'
remove.packages("irlba")
install.packages("irlba")
and restart, it is work!
Very nice package, thanks for the work. When I ran createSCEobject function with your example data (the following code), I ran into the following error. When I looked for similar issues I figured out it is due to Matrix package version. So downgrading Matrix to 1.6-1 will fix the problem but in that case Seurat will not load since SeuratObject requires Matrix>=1.6-3.
The text was updated successfully, but these errors were encountered: