This repository is the home of all of our libraries which are used in many of our scientific projects. All artifacts are located in our maven-repository. To use this repository, add the following configuration to your pom.xml
file or gradle script:
<repositories>
<repository>
<id>jfrog-genepi-maven</id>
<name>jfrog-genepi-maven</name>
<url>https://genepi.jfrog.io/artifactory/maven/</url>
</repository>
</repositories>
A small java library to simplify working with files.
<dependency>
<groupId>genepi</groupId>
<artifactId>genepi-io</artifactId>
<version>1.0.12</version>
<type>pom</type>
</dependency>
A small java library to simplify writing Hadoop jobs.
<dependency>
<groupId>genepi</groupId>
<artifactId>genepi-hadoop</artifactId>
<version>mr1-1.4.1</version>
<type>pom</type>
</dependency>
A small java library to simplify working with databases (e.g. mysql or h2)
<dependency>
<groupId>genepi</groupId>
<artifactId>genepi-db</artifactId>
<version>1.2.0</version>
<type>pom</type>
</dependency>