if (location.getPosition() != null)
{
if (location.getPosition().getPosition() == null
- || !"unknown".equals(location.getPosition().getStatus()))
+ || "unknown".equals(location.getPosition().getStatus()))
{
Console.warn(
"Ignoring single position feature with uncertain location "
// FIXME: Jim needs to specify what (promoted) means !! - or perhaps we just
// ignore it !
assertEquals("1 (promoted)", (res.get(0).getVersion()));
+
+ List<SequenceFeature> features = seq.getFeatures().findFeatures(41, 41,
+ "sequence variant");
+ // verify single position features are parsed correctly JAL-4347
+ assertNotNull(features);
+ assertEquals(3, features.size());
+
}
/**