Skip to content

Commit

Permalink
Update to latest Picard/HTSJDK and fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
droazen committed Oct 11, 2022
1 parent 8b2281c commit fd3f0a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ repositories {
mavenLocal()
}

final htsjdkVersion = System.getProperty('htsjdk.version','3.0.0')
final picardVersion = System.getProperty('picard.version','2.27.4')
final htsjdkVersion = System.getProperty('htsjdk.version','3.0.1')
final picardVersion = System.getProperty('picard.version','2.27.5')
final barclayVersion = System.getProperty('barclay.version','4.0.2')
final sparkVersion = System.getProperty('spark.version', '2.4.5')
final scalaVersion = System.getProperty('scala.version', '2.11')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public File getOutputDir() {
}

private void setOutputDir() {
this.outputDir = IOUtil.createTempDir(this.getClass().getSimpleName() + ".", ".tmp");
this.outputDir = IOUtil.createTempDir(this.getClass().getSimpleName() + ".tmp").toFile();
if (deleteOnExit) {
outputDir.deleteOnExit();
}
Expand Down

0 comments on commit fd3f0a5

Please sign in to comment.