-
Notifications
You must be signed in to change notification settings - Fork 932
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solution for as_cholmod_sparse
and CRsparse_rowSums
errors
#8202
Labels
bug
Something isn't working
Comments
This was referenced Dec 18, 2023
Closed
dcollins15
changed the title
Error:
Solution: Dec 21, 2023
object 'CRsparse_colSums' not found
raised after upgrading to Seurat
v5.0.1object 'CRsparse_colSums' not found
raised after upgrading to Seurat
v5.0.1
Thanks! @dcollins15 . This works for me! |
This solution worked for me allowing Pando to be compatible with my current seurat/signac environments. Thanks @dcollins15 ! |
Thanks, it worked for me. |
Thank you! |
Thanks @dcollins15 , that worked for me as well! |
dcollins15
changed the title
Solution:
Solution for Feb 3, 2025
object 'CRsparse_colSums' not found
raised after upgrading to Seurat
v5.0.1as_cholmod_sparse
and CRsparse_rowSums
errors
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After a recent update to the
Matrix
package, users have encountered issues runningSeurat
functions that depend on certainMatrix
generics. Typically, this results in one of two errors:OR
Solution
To resolve the first error, re-install the
irlba
package from source:To resolve the second error, re-install the
TFBSTools
package from source:Details
The errors are encountered if either
irlba
orTFBSTools
was installed withMatrix
<=1.6-1 and then run withMatrix
>=1.6-2. When a package is installed, the definitions for all its S4 classes/methods are cached, including methods from its dependencies (unless they're explicitly included in the package's NAMESPACE using animportClassesFrom
directive). In this case, S4 references fromMatrix
<= 1.6-1 that were cached byirlba
andTFBSTools
and then dropped inMatrix
>= 1.6-2, cannot be properly resolved. For a more detailed discussion on S4 caching and theMatrix
package, please checkout this thread.Re-installing the affected packages from source resolves the issue by refreshing their S4 method caches.
The text was updated successfully, but these errors were encountered: