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()
The text was updated successfully, but these errors were encountered:
When using the
select_variable_genes
method on an AnnData object, ifadata.X
is a sparse matrix, an error will be raised. Therefore, we must first execute:adata.X = adata.X.toarray()
The text was updated successfully, but these errors were encountered: