We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
You might consider replacing stats::svd() with a faster function in order to support analysis of a greater number of cells.
stats::svd()
Here's my benchmark:
The text was updated successfully, but these errors were encountered:
I tried a in-house dataset and replaced the stats::svd with irlba::irlba.
stats::svd
irlba::irlba
This method (phiclust) is not computationally efficient for large datasets.
out <- phiclust1(expr = mat, clusters = clusters) Calculating values for cluster 1 Dim: 24155 54994 Calculating svd ... Error in La.svd(x, nu, nv) : cannot allocate memory block of size 134217728 Tb
Sorry, something went wrong.
No branches or pull requests
You might consider replacing
stats::svd()
with a faster function in order to support analysis of a greater number of cells.Here's my benchmark:
The text was updated successfully, but these errors were encountered: