Skip to content

Commit

Permalink
Fix for NPE in assemble action invoked with -OmaxBadPointsPercent=0
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolotin committed Nov 11, 2016
1 parent 46aae5c commit f71d8fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG_CURRENT
@@ -0,0 +1 @@
Fix for NPE in assemble action invoked with `-OmaxBadPointsPercent=0`
Expand Up @@ -181,7 +181,8 @@ public VoidProcessor<VDJCAlignments> getInitialAssembler() {
}

public boolean beginMapping() {
globalLogger.end(totalAlignments.get());
if (globalLogger != null)
globalLogger.end(totalAlignments.get());
if (!parameters.isMappingEnabled())
return false;

Expand Down

0 comments on commit f71d8fe

Please sign in to comment.