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
When data gets too large the conversion from sparse matrix format to dense matrices crashes.
Here with 120k cells and 22k features (already reduced from 28k).
Warning messages:
1: In .sparse2dense(e1) :
sparse->dense coercion: allocating vector of size 20.6 GiB
2: In .sparse2dense(e2) :
sparse->dense coercion: allocating vector of size 20.6 GiB
....
Processing rep1
Error in nt_data %*% model.matrix :
Cholmod error 'problem too large' at file ../Core/cholmod_dense.c, line 102
Calls: CalcPerturbSig -> PerturbDiff -> %*% -> %*%
ideas
reduce data size further by dim. red.
split the data per KO after PCA and perform the steps per KO -> aggregate data before LDA
Question: do the steps work per KO or require all the data?
The text was updated successfully, but these errors were encountered:
When data gets too large the conversion from sparse matrix format to dense matrices crashes.
Here with 120k cells and 22k features (already reduced from 28k).
ideas
The text was updated successfully, but these errors were encountered: