Skip to content

Commit

Permalink
[DECA-12] Improve I/O bindings.
Browse files Browse the repository at this point in the history
Resolves #12.

* Bump to Hadoop-BAM 7.9.1, net.fnothaft fork.
* Add s3a file system bindings.
  • Loading branch information
fnothaft committed Sep 14, 2017
1 parent 31385e8 commit aa6c073
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
4 changes: 4 additions & 0 deletions deca-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@
</build>

<dependencies>
<dependency>
<groupId>net.fnothaft</groupId>
<artifactId>jsr203-s3a</artifactId>
</dependency>
<dependency>
<groupId>org.bdgenomics.utils</groupId>
<artifactId>utils-cli-spark2_2.11</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion deca-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
<artifactId>breeze-natives_${scala.version.prefix}</artifactId>
</dependency>
<dependency>
<groupId>org.seqdoop</groupId>
<groupId>net.fnothaft</groupId>
<artifactId>hadoop-bam</artifactId>
</dependency>
<dependency>
Expand Down
21 changes: 19 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<breeze.version>0.12</breeze.version>
<!-- Edit the following line to configure the Hadoop (HDFS) version. -->
<hadoop.version>2.7.3</hadoop.version>
<hadoop-bam.version>7.8.0</hadoop-bam.version>
<hadoop-bam.version>7.9.1</hadoop-bam.version>
<utils.version>0.2.11</utils.version>
<htsjdk.version>2.9.1</htsjdk.version>
<scoverage.plugin.version>1.1.1</scoverage.plugin.version>
Expand Down Expand Up @@ -331,6 +331,11 @@
<artifactId>utils-metrics-spark2_2.11</artifactId>
<version>${utils.version}</version>
</dependency>
<dependency>
<groupId>net.fnothaft</groupId>
<artifactId>jsr203-s3a</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
Expand Down Expand Up @@ -367,11 +372,23 @@
<groupId>org.bdgenomics.adam</groupId>
<artifactId>adam-core-spark2_2.11</artifactId>
<version>${adam.version}</version>
<exclusions>
<exclusion>
<groupId>org.seqdoop</groupId>
<artifactId>hadoop-bam</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.bdgenomics.adam</groupId>
<artifactId>adam-cli-spark2_2.11</artifactId>
<version>${adam.version}</version>
<exclusions>
<exclusion>
<groupId>org.seqdoop</groupId>
<artifactId>hadoop-bam</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
Expand Down Expand Up @@ -416,7 +433,7 @@
<version>${breeze.version}</version>
</dependency>
<dependency>
<groupId>org.seqdoop</groupId>
<groupId>net.fnothaft</groupId>
<artifactId>hadoop-bam</artifactId>
<version>${hadoop-bam.version}</version>
<exclusions>
Expand Down

0 comments on commit aa6c073

Please sign in to comment.