Bugfix for pruneVariantContext, which was dropping the ref base for padding
This commit is contained in:
parent
473b860312
commit
23359d1c6c
|
|
@ -302,7 +302,7 @@ public class VariantContextUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
return new VariantContext(vc.getSource(), vc.getID(), vc.getChr(), vc.getStart(), vc.getEnd(),
|
return new VariantContext(vc.getSource(), vc.getID(), vc.getChr(), vc.getStart(), vc.getEnd(),
|
||||||
vc.getAlleles(), genotypes, vc.getNegLog10PError(), vc.getFilters(), attributes);
|
vc.getAlleles(), genotypes, vc.getNegLog10PError(), vc.getFilters(), attributes, vc.getReferenceBaseForIndel());
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum GenotypeMergeType {
|
public enum GenotypeMergeType {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue