\r
boolean fastPaint = false;\r
\r
+ public static int GRAPH_HEIGHT = 40;\r
+\r
\r
\r
public AnnotationPanel(AlignmentPanel ap)\r
aa[i].height += 16;\r
\r
if (aa[i].isGraph)\r
- aa[i].height += 50;\r
+ aa[i].height += GRAPH_HEIGHT;\r
\r
if(aa[i].height==0)\r
aa[i].height = 20;\r
if (validRes && row.isGraph)\r
{\r
g.setColor(new Color(0,0,180));\r
- int height = (int)((row.annotations[j].value / row.graphMax)*50);\r
+ int height = (int)((row.annotations[j].value / row.graphMax)*GRAPH_HEIGHT);\r
\r
if(row.windowLength>1)\r
{\r
}\r
\r
total/=row.windowLength;\r
- height = (int)( (total / row.graphMax) *50);\r
+ height = (int)( (total / row.graphMax) *GRAPH_HEIGHT);\r
\r
}\r
\r
for(int j=0; j<aa.annotations.length; j++)\r
{\r
g.setColor(new Color(0, 0, 180));\r
- int height = (int) ( (aa.annotations[j].value / aa.graphMax) * 50);\r
+ int height = (int) ( (aa.annotations[j].value / aa.graphMax) * GRAPH_HEIGHT );\r
g.fillRect(x, y - height, av.charWidth, height);\r
x+=av.charWidth;\r
}\r