* @author jprocter
*
*/
-public class ContactMapRenderer implements AnnotationRowRendererI
+public abstract class ContactMapRenderer implements AnnotationRowRendererI
{
+ /**
+ * bean holding colours for shading
+ * @author jprocter
+ *
+ */
+ public class Shading
+ {
+ /**
+ * shown when no data available from map
+ */
+ Color no_data;
+ /**
+ * shown for region not currently visible - should normally not see this
+ */
+ Color hidden;
+ /**
+ * linear shading scheme min/max
+ */
+ Color maxColor, minColor;
+
+ /**
+ * linear shading scheme min/max for selected region
+ */
+ Color selMinColor, selMaxColor;
+
+ public Shading(Color no_data, Color hidden, Color maxColor,
+ Color minColor, Color selMinColor, Color selMaxColor)
+ {
+ super();
+ this.no_data = no_data;
+ this.hidden = hidden;
+ this.maxColor = maxColor;
+ this.minColor = minColor;
+ this.selMinColor = selMinColor;
+ this.selMaxColor = selMaxColor;
+ }
+
+ }
+
+ final Shading shade;
+
+ /**
+ * build an EBI-AlphaFold style renderer of PAE matrices
+ * @return
+ */
+ public static ContactMapRenderer newPAERenderer()
+ {
+ return new ContactMapRenderer()
+ {
+ @Override
+ public Shading getShade()
+ {
+ return new Shading(Color.pink, Color.red,
+
+ new Color(246, 252, 243), new Color(0, 60, 26),
+ new Color(26, 0, 60), new Color(243, 246, 252));
+ }
+ };
+ }
+
+ /**
+ *
+ * @return instance of Shading used to initialise the renderer
+ */
+ public abstract Shading getShade();
+
+ public ContactMapRenderer()
+ {
+ this.shade = getShade();
+ }
@Override
public void renderRow(Graphics g, int charWidth, int charHeight,
int x = 0, y2 = y;
- g.setColor(Color.pink);
+ g.setColor(shade.no_data);
g.drawLine(x, y2, (eRes - sRes) * charWidth, y2);
}
if (containsHidden)
{
- col = Color.red;
+ col = shade.hidden;
}
g.setColor(col);
if (cgeom.pixels_step > 1)
}
- // Shading parameters
- // currently hardwired for alphafold
- Color maxColor = new Color(246, 252, 243),
- minColor = new Color(0, 60, 26),
- selMinColor = new Color(26, 0, 60),
- selMaxColor = new Color(243, 246, 252);
-
Color shadeFor(float min, float max, float value)
{
- return jalview.util.ColorUtils.getGraduatedColour(value, 0, minColor,
- max, maxColor);
+ return jalview.util.ColorUtils.getGraduatedColour(value, 0, shade.minColor,
+ max, shade.maxColor);
}
public Color getColorForRange(float min, float max, ContactListI cl,
ContactRange cr = cl.getRangeFor(i, j);
// average for moment - probably more interested in maxIntProj though
return jalview.util.ColorUtils.getGraduatedColour((float) cr.getMean(),
- 0, selMinColor, max, selMaxColor);
+ 0, shade.selMinColor, max, shade.selMaxColor);
}
}