Fix typo in VariantContextBuilder
This commit is contained in:
parent
5f7ccdcc01
commit
100ddef930
|
|
@ -106,7 +106,7 @@ public class VariantContextBuilder {
|
|||
* @param parent Cannot be null
|
||||
*/
|
||||
public VariantContextBuilder(VariantContext parent) {
|
||||
if ( parent == null ) throw new ReviewedStingException("BUG: VariantContext parent argument cannot be null in VariantContextBuilder")
|
||||
if ( parent == null ) throw new ReviewedStingException("BUG: VariantContext parent argument cannot be null in VariantContextBuilder");
|
||||
this.alleles = parent.alleles;
|
||||
this.attributes = parent.getAttributes();
|
||||
this.attributesCanBeModified = false;
|
||||
|
|
|
|||
Loading…
Reference in New Issue