Hydra is part of HADES.
An R package and Java library for hydrating package skeletons into executable R study packages based on specifications in JSON format.
See the instructions here for configuring your R environment, including Java.
In R, use the following commands to download and install Hydra:
install.packages("remotes")
library(remotes)
install_github("ohdsi/Hydra")
You can fetch the JAR files in the inst/java folder of this repository, or use Maven:
repositories>
<repository>
<id>ohdsi</id>
<name>repo.ohdsi.org</name>
<url>https://repo.ohdsi.org/nexus/content/groups/public</url>
<repository>
</repositories> </
2: Include the Hydra dependency in your pom.xml
dependency>
<groupId>org.ohdsi</groupId>
<artifactId>hydra</artifactId>
<version>0.3.0</version>
<dependency> </
Documentation can be found on the package website.
PDF versions of the documentation are also available: * Vignette: Hydrating packags * Vignette: Writing Hydra configuration files * Package manual: Hydra.pdf
Read here how you can contribute to this package.