-
Notifications
You must be signed in to change notification settings - Fork 26
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
Massive memory usage while using mergeMassPeaks and FilterPeaks #64
Comments
Sparse matrices could be a solution especially with the on-disk vector feature. |
@dsammour and @sgibb, Sorry for putting my inappropriate question here. I also want to analyze my MALDI-FTICR data (MALDI profiling data, not MALDI imaging data ) with Dong |
Hi @YonghuiDong, could you please open an issue in |
Hi @dsammour , Thanks a lot. Dong |
Please have a look at PR #71 I've optimized the speed and memory usage for |
Hi Sebastian,
I am currently working with massive
MassPeaks
lists of MALDI-FTICR data. By massive I meanEverything works flawlessly, but I noticed i) a huge memory usage (can reach up to 120 GBs!) when calling
mergeMassPeaks
and ii) huge memory usage + sometimes error messages when callingfilterMassPeaks
. Both were called afterbinPeaks
. The error message is as follows:I know that internally both functions construct intensity matrices which blows up memory usage. Did you ever face such issues? What could you recommend in such situation?
Suggestion
For the internal construction of the intensity matrices, do you think it would be a better idea to construct spars matrices? for examples instead of the current implementation of
.as.matrix.MassObjectList
to use something like this :what do you think?
The text was updated successfully, but these errors were encountered: