private static Map<String, Map<String, Map<String, Object>>> annotMap;
private static String DONTCOMBINE = "DONTCOMBINE";
+ private static String INVISIBLE = "INVISIBLE";
static
{
featureMap = new HashMap<String, Map<String, String[]>>();
amap = new HashMap<String, Map<String, Object>>());
amap.put("Dydx", new HashMap<String, Object>());
amap.get("Dydx").put(DONTCOMBINE, DONTCOMBINE);
+ amap.put("SmoothedScore", new HashMap<String, Object>());
+ amap.get("SmoothedScore").put(INVISIBLE,INVISIBLE);
+ amap.put("RawScore", new HashMap<String, Object>());
+ amap.get("RawScore").put(INVISIBLE,INVISIBLE);
annotMap.put(compbio.ws.client.Services.DisemblWS.toString(),
amap = new HashMap<String, Map<String, Object>>());
+ ")", service.getServiceTypeURI()+"/"+ scr.getMethod(), aseq,
base, scr);
annot.graph = AlignmentAnnotation.LINE_GRAPH;
+ annot.visible = (annotTypeMap==null || annotTypeMap.get(scr.getMethod())==null || annotTypeMap.get(scr.getMethod()).get(INVISIBLE) == null);
+
if (annotTypeMap==null || annotTypeMap.get(scr.getMethod())==null || annotTypeMap.get(scr.getMethod()).get(DONTCOMBINE) == null)
{
{
annot.graphGroup = graphGroup;
}
}
+
annot.description = service.getActionText() + " - raw scores";
Color col = new UserColourScheme(typeName)
.createColourFromName(typeName + scr.getMethod());