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 using the select_variable_genes method on an AnnData object, if adata.X is a sparse matrix, an error will be raised. Therefore, we must first execute:adata.X = adata.X.toarray()
When using the
select_variable_genesmethod on an AnnData object, ifadata.Xis a sparse matrix, an error will be raised. Therefore, we must first execute:adata.X = adata.X.toarray()