}
/*
- * configure 'full' SO model unless preferences say not to
+ * configure 'full' SO model if preferences say to,
+ * else use the default (SO Lite)
*/
- if (!Cache.getDefault("USE_SO_LITE", false))
+ if (Cache.getDefault("USE_FULL_SO", false))
{
SequenceOntologyFactory.setInstance(new SequenceOntology());
}
{
if (!termsNotFound.contains(term))
{
- System.out.println("SO term " + term
- + " not known - add to model if needed in "
- + getClass().getName());
+ // suppress logging here as it reports Uniprot sequence features
+ // (which do not use SO terms) when auto-configuring feature colours
+ // System.out.println("SO term " + term
+ // + " not known - add to model if needed in "
+ // + getClass().getName());
termsNotFound.add(term);
}
}