Skip to content

Commit

Permalink
This fixes #386
Browse files Browse the repository at this point in the history
  • Loading branch information
PoslavskySV committed May 27, 2018
1 parent 5c76679 commit 03e7fb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG_CURRENT
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor:
Fixed #386
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ public String metaVars() {
@Override
protected String extract(VDJCObject object) {
VDJCHit[] hits = object.getHits(type);
if (hits == null)
if (hits == null || hits.length == 0)
return NULL;
StringBuilder sb = new StringBuilder();
sb.append("");
Expand Down

0 comments on commit 03e7fb7

Please sign in to comment.