X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2Fvcf%2FVCFLoaderTest.java;h=7b0da40c0703e1867ffa280cac14b1af65069a15;hb=0b573ed90b14079f7326281f50c0c9cffdace586;hp=87cf727c05a7780c0b6a958a131b186d068ee948;hpb=8c0019f5e35dcfdb8014f280ba1193db239c92dd;p=jalview.git diff --git a/test/jalview/io/vcf/VCFLoaderTest.java b/test/jalview/io/vcf/VCFLoaderTest.java index 87cf727..7b0da40 100644 --- a/test/jalview/io/vcf/VCFLoaderTest.java +++ b/test/jalview/io/vcf/VCFLoaderTest.java @@ -210,7 +210,7 @@ public class VCFLoaderTest * verify SNP variant feature(s) computed and added to protein * first codon AGC varies to ACC giving S/T */ - DBRefEntry[] dbRefs = al.getSequenceAt(1).getDBRefs(); + List dbRefs = al.getSequenceAt(1).getDBRefs(); SequenceI peptide = null; for (DBRefEntry dbref : dbRefs) { @@ -476,7 +476,7 @@ public class VCFLoaderTest * verify variant feature(s) computed and added to protein * last codon GCT varies to GGT giving A/G in the last peptide position */ - DBRefEntry[] dbRefs = al.getSequenceAt(3).getDBRefs(); + List dbRefs = al.getSequenceAt(3).getDBRefs(); SequenceI peptide = null; for (DBRefEntry dbref : dbRefs) { @@ -636,7 +636,7 @@ public class VCFLoaderTest * and GAG/GGG which is E/G in position 4 * the insertion variant is not transferred to the peptide */ - DBRefEntry[] dbRefs = al.findName("transcript3").getDBRefs(); + List dbRefs = al.findName("transcript3").getDBRefs(); SequenceI peptide = null; for (DBRefEntry dbref : dbRefs) {