Skip to content

Commit

Permalink
Upgrade to Picard 2.23.3 (#6717)
Browse files Browse the repository at this point in the history
* Upgrade to picard 2.23.3
  • Loading branch information
cmnbroad authored Aug 4, 2020
1 parent 6a0853d commit 5a14c7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ repositories {
}

final htsjdkVersion = System.getProperty('htsjdk.version','2.23.0')
final picardVersion = System.getProperty('picard.version','2.22.8')
final picardVersion = System.getProperty('picard.version','2.23.3')
final barclayVersion = System.getProperty('barclay.version','3.0.0')
final sparkVersion = System.getProperty('spark.version', '2.4.5')
final scalaVersion = System.getProperty('scala.version', '2.11')
Expand Down
4 changes: 1 addition & 3 deletions src/test/java/org/broadinstitute/hellbender/MainTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,7 @@ public void testNonZeroPicardReturnValue() {
public void testEnsureShortDescriptionsAreShort() {
// Test each command line tool to ensure that one line summaries don't exceed the maximum allowable length

//TODO: replace this constant with the Picard-defined length when its available in GATK
//final int MAX_ALLOWABLE_ONE_LINE_SUMMARY_LENGTH = picard.cmdline.CommandLineProgram.MAX_ALLOWABLE_ONE_LINE_SUMMARY_LENGTH;
final int MAX_ALLOWABLE_ONE_LINE_SUMMARY_LENGTH = 120;
final int MAX_ALLOWABLE_ONE_LINE_SUMMARY_LENGTH = picard.cmdline.CommandLineProgram.MAX_ALLOWABLE_ONE_LINE_SUMMARY_LENGTH;

// Picard tools are validated independently by a similar test in Picard, and also use a CommandLineProgram
// class from a different package, so bypass tools from that package for this test
Expand Down

0 comments on commit 5a14c7c

Please sign in to comment.