Skip to content
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

Fix slow distance matrix calculation #1154

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

skelly001
Copy link

Distance matrix calculation is extremely slow when using correlation-based distance and NAs are present. The existing strategy utilizes nested for loops via the ComplexHeatmap:::dist2 function when NAs are present in the matrix. This solution is too slow for large matrices (e.g., 10000 x 100). These nested for loops can be avoided by using the use = "pairwise.complete.obs" argument of the stats::cor function yielding quick distance matrix calculation in the presence of NAs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant