// TODO: Use original sequence characters rather than re-translated
// characters in output
// Find the biggest id length for formatting purposes
+ String s1id=s1.getName(),s2id=s2.getName();
int maxid = s1.getName().length();
if (s2.getName().length() > maxid)
{
maxid = s2.getName().length();
}
-
+ if (maxid>30) {
+ maxid = 30;
+ // JAL-527 - truncate the sequence ids
+ if (s1.getName().length()>maxid)
+ {
+ s1id = s1.getName().substring(0,30);
+ }
+ if (s2.getName().length()>maxid)
+ {
+ s2id = s2.getName().substring(0,30);
+ }
+ }
int len = 72 - maxid - 1;
int nochunks = ((aseq1.length - count) / len) + 1;
pid = 0;
for (int j = 0; j < nochunks; j++)
{
// Print the first aligned sequence
- output.append(new Format("%" + (maxid) + "s").form(s1.getName())
+ output.append(new Format("%" + (maxid) + "s").form(s1id)
+ " ");
for (int i = 0; i < len; i++)
// Now print the second aligned sequence
output = output.append("\n");
- output = output.append(new Format("%" + (maxid) + "s").form(s2
- .getName())
+ output = output.append(new Format("%" + (maxid) + "s").form(s2id)
+ " ");
for (int i = 0; i < len; i++)