Skip to content

Commit

Permalink
Bugfix to VCFHeaderLineCount in MultiSourceAnnotator
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Oct 26, 2023
1 parent 278ed24 commit 7bb2070
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ public void onTraversalStart() {
}

if (snpSiftFieldMapping.containsKey(line.getID())) {
line = new VCFInfoHeaderLine(snpSiftFieldMapping.get(line.getID()), line.getCount(), line.getType(), line.getDescription(), line.getSource(), line.getVersion());
line = new VCFInfoHeaderLine(snpSiftFieldMapping.get(line.getID()), line.getCountType(), line.getType(), line.getDescription(), line.getSource(), line.getVersion());
}

header.addMetaDataLine(line);
Expand Down

0 comments on commit 7bb2070

Please # to comment.