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
Hi, I am wondering if there is a way to speed up normalizeToMatrix or a workaround? Thank you in advance! I really enjoy using EnrichedHeatmap so far.
The text was updated successfully, but these errors were encountered:
For the format
normalizeToMatrix(signal, target, ...)
maybe you can split target into blocks and run normalizeToMatrix() separately, later combine them with rbind():
target
normalizeToMatrix()
rbind()
tl = list( target[1:100], target[101:200], target[201:300], .... ) ml = mclapply(tl, mc.cores = 4, function(x) normalizeToMatrix(signal, x)) m = do.call(rbind, ml) EnrichedHeatmap(m)
Sorry, something went wrong.
Thank for your suggestions. I will try this!
No branches or pull requests
Hi,
I am wondering if there is a way to speed up normalizeToMatrix or a workaround?
Thank you in advance! I really enjoy using EnrichedHeatmap so far.
The text was updated successfully, but these errors were encountered: