This project's goal is to reduce duplicate code across different Google Genomics Java integrations.
If you have duplicate code appearing in your projects, or see useful functions in the other googlegenomics Java repositories that you want to depend on, please contribute!
##Depending on this project
Note: you can find the latest available version of this project in Maven's central repository.
Add the following to your pom.xml
file:
<project>
<dependencies>
<dependency>
<groupId>com.google.cloud.genomics</groupId>
<artifactId>google-genomics-utils</artifactId>
<version>v1beta2-0.1</version>
</dependency>
</dependencies>
</project>
Add the following to your build.gradle
file, updating the version to the most recent release:
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.cloud.genomics:google-genomics-utils:v1-0.7'
}
-
git clone this repository.
-
If you have not already done so, follow the Google Genomics getting started instructions to set up your environment including installing gcloud and running
gcloud init
. -
This project now includes code for calling the Genomics API using gRPC. To use gRPC, you'll need a version of ALPN that matches your JRE version.
-
See the ALPN documentation for a table of which ALPN jar to use for your JRE version.
-
Then download the correct version from here.
-
Use a recent version of Apache Maven (e.g., version 3.3.3) to build this code:
cd utils-java
mvn package
If you wish to modify this code while also modifying a project that depends upon it (e.g., dataflow-java), just
- Build and install the jar to your local maven repository via
mvn install
. - Then update the
pom.xml
of the dependent project to temporarily depend upon the particular SNAPSHOT version of utils-java now installed in your local maven repository. For example, make a change similar to this but only in your local copy ofpom.xml
. - Eclipse users:
* For each of utils-java, dataflow-java, etc... in Eclipse do:
File -> Import -> Maven -> Existing Maven Projects
* If at any point in Eclipse becomes confused (lot of red X's) in Eclipse do:Project -> Clean -> Clean All Projects
- IntelliJ users: * Import the project via File > Open and then double-click on the pom.xml file.
See Example.java for some example code that uses gRPC. The protocol buffer schema for the API can be found in src/main/proto/google/genomics/v1.
- To run the example:
MAVEN_OPTS="-Xbootclasspath/p:/YOUR/PATH/TO/alpn-boot-YOUR-VERSION.jar" \
mvn exec:java -Dexec.mainClass=com.google.cloud.genomics.utils.grpc.Example
- com.google.cloud.genomics.utils
- GenomicsFactory.java Makes it easier to construct an authenticated Genomics service.
- Paginator.java Lazily paginates through readsets, reads, variants, callsets, etc...
- com.google.cloud.genomics.utils.grpc
- Channels.java Makes it easier to creating gRPC channels to the Google Genomics API.
- Example.java Demonstrates usage of gRPC via a minimal example.
- proto
- Protocol Buffer files defing the gRPC interface to the Genomics API.
This section contains details on getting a new release into Maven central and can be safely ignored by most people. If you need a new release of this code, go ahead and just file an issue.
- Create a Sonatype Jira Account
- File a ticket to get access to the Sonatype com.google.cloud.genomics group
- Setup gpg (Don't forget to publish a public key)
- Setup GitHub SSH keys (make sure
ssh -T [email protected]
works) - Create a
~/.m2/settings.xml
file which has the following:
<settings>
<servers>
<server>
<id>ossrh</id>
<username>sonatype-username</username>
<password>sonatype-password</password>
</server>
</servers>
</settings>
- Use Maven to tag the code, up the pom version and release into the Sonatype staging area.
mvn release:prepare && mvn release:perform
...
What is the release version for "Google Genomics Utils"?: <the next version, e.g. 'v1beta2-0.26'>
What is SCM release tag or label for "Google Genomics Utils"?: <ENTER>
What is the new development version for "Google Genomics Utils"? <the next, next version with a -SNAPSHOT suffix, e.g. v1beta2-0.27-SNAPSHOT>
- Find the repository at https://oss.sonatype.org/#stagingRepositories and close it.
- If closing succeeds, then release it. See the detailed instructions for more info.
- As long as there aren't any errors - that's it! The new version will be synced to Maven central.