You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great work with this package! I was trying it today (Dev branch) for some of my Xenium data and noticed that I get a Java heap space issue.
I solved it using options(java.parameters = c("-XX:+UseConcMarkSweepGC", "-Xmx8192m")) before importing but is there some way it can be solved within the package?
Best,
Nikolas
The text was updated successfully, but these errors were encountered:
Yes, this is a problem that we are trying to work around at the moment.
RBioformats is the only Java-dependant dependancy we have in VoltRon at the moment and it requires these external configurations (I personally embedded this options(..) call in .Rprofile under home for default setting).
Please let me know if you also come up with an internal solution for this later. Another solution could be to use the BioFormats C++ wrapper for importing ome.tiff images, removing RBioFormats package dependancy all-together.
Artur-man
changed the title
RBioformats Java Heap issue
RBioformats Java Heap issue, and non-Java based dependancies for importing OME.TIFF images
Jun 13, 2024
Hi Artur,
Great work with this package! I was trying it today (Dev branch) for some of my Xenium data and noticed that I get a Java heap space issue.
I solved it using
options(java.parameters = c("-XX:+UseConcMarkSweepGC", "-Xmx8192m"))
before importing but is there some way it can be solved within the package?Best,
Nikolas
The text was updated successfully, but these errors were encountered: