Modified UnitTests to respect reference padding
This commit is contained in:
parent
3e29841776
commit
c22a66870c
|
|
@ -604,7 +604,7 @@ public class VariantContextUtilsUnitTest extends BaseTest {
|
||||||
|
|
||||||
private RepeatDetectorTest(boolean isTrueRepeat, String ref, String refAlleleString, String ... altAlleleStrings) {
|
private RepeatDetectorTest(boolean isTrueRepeat, String ref, String refAlleleString, String ... altAlleleStrings) {
|
||||||
super(RepeatDetectorTest.class);
|
super(RepeatDetectorTest.class);
|
||||||
this.ref = ref;
|
this.ref = "N" + ref; // add a dummy base for the event here
|
||||||
this.isTrueRepeat = isTrueRepeat;
|
this.isTrueRepeat = isTrueRepeat;
|
||||||
|
|
||||||
List<Allele> alleles = new LinkedList<Allele>();
|
List<Allele> alleles = new LinkedList<Allele>();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue