Package to bring RDF and SPARQL functionality to R, using the Jena libraries (needs Java7 or higher).
java/ -> Helper classes for the R rdf package.
rdf/ -> R package for dealing with RDF, using Jena.
rrdflibs/ -> Jena libraries
Information about this package can be found in this preprint:
Willighagen E. (2014) Accessing biological data in R with semantic web
technologies. PeerJ PrePrints 2:e185v3
See https://dx.doi.org/10.7287/peerj.preprints.185v3
(Please cite this paper if you use this package.)
To cite a specific release, you can use these http://zenodo.org/ DOIs:
https://groups.google.com/forum/#!forum/rrdf-user
Copyright (C) 2011-2015 Egon Willighagen and contributors
Apache License 2.0 for for the rrdflibs package files.
Copyright for Jena is described in the LICENSE and java/NOTICE files. Please also visit https://jena.apache.org/.
Copyright (C) 2011-2015 Egon Willighagen and contributors
License AGPL v3 for the rrdf package.
Authors:
Egon Willighagen
Contributions from:
Carl Boettiger, Ryan Kohl
(See: https://github.com/egonw/rrdf/graphs/contributors)
Previously, the packages were available from CRAN, but this is no longer the case.
Mind you, the below install_github() method will attempt to rebuild the vignette and therefore at this moment require a LaTeX distribution with pdflatex and a few packages installed. See also issue https://github.com/egonw/rrdf/issues/28 and https://github.com/egonw/rrdf/issues/29.
> install.packages("rJava") # if not present already
> install.packages("devtools") # if not present already
> library(devtools)
> install_github("egonw/rrdf", subdir="rrdflibs")
> install_github("egonw/rrdf", subdir="rrdf", build_vignettes = FALSE)
$ cd rrdf/java
$ groovy build.groovy
$ cd ../..
$ R CMD build rrdflibs
$ R CMD check --as-cran rrdflibs_1.4.0.tar.gz
$ R CMD build rrdf
$ tar xvf rrdf_2.0.4.tar.gz rrdf/inst/doc/tutorial.pdf
$ R CMD check --as-cran rrdf_2.0.4.tar.gz
In case of issues on Mac, follow the instructions below:
check that the $JAVA_PATH variable is correctly set. If not:
touch ~/.bash_profile; open ~/.bash_profile
in a Terminal window.source ~/.bash_profile
in a terminal window.check that that Java >=1.7 is installed in your system. If not, go to https://java.com/it/download/
check that R sees the latest Java version (.jinit();.jcall("java/lang/System", "S", "getProperty", "java.runtime.version")
). If not [1,2]:
sudo R CMD javareconf
in a Terminal window.install.packages('rJava', type='source')
.sudo ln -f -s $(/usr/libexec/java_home)/jre/lib/server/libjvm.dylib /usr/lib
in a Terminal window.