RBioFormats is an R package which provides an interface to the OME Bio-Formats Java library. It facilitates reading of proprietary image data and metadata in R.
First, make sure you have JDK 1.8 or higher installed.
To install RBioFormats use the biocLite
installation script in order to resolve the dependency on the Bioconductor package EBImage.
if (!require("BiocManager", quietly=TRUE)) install.packages("BiocManager")
BiocManager::install("aoles/RBioFormats")
Mac OS comes with a legacy Apple Java 6. In order to use RBioFormats, you will need to update your Java installation to a newer version provided by Oracle.
Install Oracle JDK.
Update R Java configuration by executing from the command line (you might have to run it as a super user by prepending sudo
depending on your installation).
R CMD javareconf
install.packages("rJava", type="source")
You can verify your configuration by running the following commands. This should return the Java version string corresponding to the one downloaded and installed in step 1.
library(rJava)
.jinit()
.jcall("java/lang/System", "S", "getProperty", "java.runtime.version")
## [1] "1.8.0_112-b16"
To get started with using RBioFormats have a look at the package vignette.
See my answers on Stack Overflow for solutions to some common and less common questions.
java.lang.OutOfMemoryError
errorIf you get the java.lang.OutOfMemoryError: Java heap space
error, try increasing the maximum heap size by supplying the -Xmx parameter before the Java Virtual Machine is initialized. For example, use
options( java.parameters = "-Xmx4g" )
library( "RBioFormats" )
to override the default setting and assign 4 gigabytes of heap space to the Java environment.
Information about the current Java heap space limit can be retrieved by checkJavaMemory()
.
Each R process needs a separate JVM instance. For this, load the package in the parallelized function, e.g.,
bplapply (files, function(f) {
library(RBioFormats)
...
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.