2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.5)
3 * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
20 import jalview.datamodel.*;
22 public class AMSAFile extends jalview.io.FastaFile
28 * Creates a new AMSAFile object for output.
30 public AMSAFile(AlignmentI al)
38 * @return DOCUMENT ME!
42 super.print(getSeqsAsArray());
44 AlignmentAnnotation aa;
45 if (al.getAlignmentAnnotation() != null)
48 for (int i = 0; i < al.getAlignmentAnnotation().length; i++)
50 aa = al.getAlignmentAnnotation()[i];
52 if (aa.autoCalculated || !aa.visible)
57 out.append(">#_" + aa.label);
58 if (aa.description != null)
60 out.append(" " + aa.description);
65 int nochunks = Math.min(aa.annotations.length, al.getWidth()) / len
68 for (int j = 0; j < nochunks; j++)
71 int end = start + len;
72 if (end > aa.annotations.length)
74 end = aa.annotations.length;
78 for (int k = start; k < end; k++)
80 if (aa.annotations[k] == null)
86 ch = aa.annotations[k].displayCharacter;
90 this.warningMessage = "Truncated column annotation to first letter.";
91 ch = ch.substring(0, 1);
100 return out.toString();