Skip to content

Commit

Permalink
upgrading to spark 2.2.0
Browse files Browse the repository at this point in the history
this bumped some transitive dependencies which required a minor update
in unrelated classes
  • Loading branch information
lbergelson committed Jan 31, 2018
1 parent 606ed63 commit a0f0776
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ repositories {
final htsjdkVersion = System.getProperty('htsjdk.version','2.14.1')
final picardVersion = System.getProperty('picard.version','2.17.2')
final barclayVersion = System.getProperty('barclay.version','2.1.0')
final sparkVersion = System.getProperty('spark.version', '2.0.2')
final sparkVersion = System.getProperty('spark.version', '2.2.0')
final hadoopBamVersion = System.getProperty('hadoopBam.version','7.9.1')
final genomicsdbVersion = System.getProperty('genomicsdb.version','0.9.2-proto-3.0.0-beta-1+uuid-static')
final testNGVersion = '6.11'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public GATKReportColumnFormat getColumnFormat() {
* @return true if the value is a right alignable
*/
protected static boolean isRightAlign(final String value) {
return value == null || RIGHT_ALIGN_STRINGS.contains(value) || NumberUtils.isNumber(value.trim());
return value == null || RIGHT_ALIGN_STRINGS.contains(value) || NumberUtils.isCreatable(value.trim());
}

/**
Expand Down

0 comments on commit a0f0776

Please sign in to comment.