{\r
SequenceI sequence = av.alignment.getSequenceAt(seq);\r
StringBuffer tip = new StringBuffer();\r
+ tip.append("<i>");\r
\r
int maxWidth = 0;\r
if (sequence.getDescription() != null)\r
{\r
tmp = sequence.getDescription();\r
- tip.append(tmp);\r
+ tip.append("<br>"+tmp);\r
maxWidth = Math.max(maxWidth, tmp.length());\r
}\r
\r
DBRefEntry[] dbrefs = sequence.getDatasetSequence().getDBRef();\r
if (dbrefs != null)\r
{\r
- tip.append("<i>");\r
for (int i = 0; i < dbrefs.length; i++)\r
{\r
tip.append("<br>");\r
tip.append(tmp);\r
maxWidth = Math.max(maxWidth, tmp.length());\r
}\r
- tip.append("</i>");\r
}\r
\r
\r