Example #1
0
 @Override
 public VariantContext next() {
   try {
     final VariantContext vc = codec.decode(source);
     return vc == null ? null : vc.fullyDecode(header, false);
   } catch (IOException e) {
     throw new RuntimeException(e);
   }
 }