2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
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
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
32 * Read and write PileUp style MSF Files. This used to be the MSFFile class, and
33 * was written according to the EBI's idea of a subset of the MSF alignment
34 * format. But, that was updated to reflect current GCG style IO fashion, as
35 * found in Emboss (thanks David Martin!)
38 import jalview.datamodel.SequenceI;
39 import jalview.util.Format;
41 import java.io.IOException;
43 public class PileUpfile extends MSFfile
47 * Creates a new MSFfile object.
54 * Creates a new MSFfile object.
64 public PileUpfile(String inFile, String type) throws IOException
69 public PileUpfile(FileParse source) throws IOException
77 * @return DOCUMENT ME!
82 return print(getSeqsAsArray());
86 public String print(SequenceI[] s)
88 StringBuffer out = new StringBuffer("PileUp");
97 int[] checksums = new int[s.length];
100 checksums[i] = checkSum(s[i].getSequenceAsString());
101 bigChecksum += checksums[i];
105 out.append(" MSF: " + s[0].getSequence().length
106 + " Type: P Check: " + bigChecksum % 10000 + " ..");
112 while ((i < s.length) && (s[i] != null))
114 String seq = s[i].getSequenceAsString();
115 out.append(" Name: " + printId(s[i]) + " oo Len: " + seq.length()
116 + " Check: " + checksums[i] + " Weight: 1.00");
119 if (seq.length() > max)
124 if (s[i].getName().length() > maxid)
126 maxid = s[i].getName().length();
146 int nochunks = (max / len) + (max % len > 0 ? 1 : 0);
148 for (i = 0; i < nochunks; i++)
152 while ((j < s.length) && (s[j] != null))
154 String name = printId(s[j]);
156 out.append(new Format("%-" + maxid + "s").form(name + " "));
158 for (int k = 0; k < 5; k++)
160 int start = (i * 50) + (k * 10);
161 int end = start + 10;
163 if ((end < s[j].getSequence().length)
164 && (start < s[j].getSequence().length))
166 out.append(s[j].getSequence(start, end));
179 if (start < s[j].getSequence().length)
181 out.append(s[j].getSequenceAsString().substring(start));
200 return out.toString();