2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
21 import jalview.datamodel.*;
\r
32 * @version $Revision$
\r
34 public abstract class AlignFile extends FileParse
\r
42 boolean jvSuffix = true;
\r
45 * Creates a new AlignFile object.
\r
52 * Creates a new AlignFile object.
\r
54 * @param inStr DOCUMENT ME!
\r
56 public AlignFile(String inStr)
\r
59 System.out.println("is this ever called??");
\r
65 catch (Exception ex)
\r
71 * Constructor which parses the data from a file of some specified type.
\r
72 * @param inFile Filename to read from.
\r
73 * @param type What type of file to read from (File, URL)
\r
75 public AlignFile(String inFile, String type) throws IOException
\r
77 super(inFile, type);
\r
85 * Return the seqs Vector
\r
87 public Vector getSeqs()
\r
93 * Return the Sequences in the seqs Vector as an array of Sequences
\r
95 public SequenceI[] getSeqsAsArray()
\r
97 SequenceI[] s = new SequenceI[seqs.size()];
\r
99 for (int i = 0; i < seqs.size(); i++)
\r
101 s[i] = (SequenceI) seqs.elementAt(i);
\r
108 * Initialise objects to store sequence data in.
\r
110 protected void initData()
\r
112 seqs = new Vector();
\r
113 headers = new Vector();
\r
119 * @param s DOCUMENT ME!
\r
121 protected void setSeqs(SequenceI[] s)
\r
123 seqs = new Vector();
\r
125 for (int i = 0; i < s.length; i++)
\r
127 seqs.addElement(s[i]);
\r
131 // Checks whether sequence is valid aa characters
\r
132 protected boolean isValidProteinSequence(String sequence)
\r
134 for (int i = 0; i < sequence.length(); i++)
\r
135 if (!jalview.schemes.ResidueProperties.aaHash.containsKey(
\r
136 String.valueOf(sequence.charAt(i))))
\r
145 * This method must be implemented to parse the contents of the file.
\r
147 public abstract void parse() throws IOException;
\r
150 * Print out in alignment file format the Sequences in the seqs Vector.
\r
152 public abstract String print();
\r
154 public void addJVSuffix(boolean b)
\r
160 * A general parser for ids.
\r
162 * @String id Id to be parsed
\r
164 Sequence parseId(String id)
\r
166 Sequence seq = null;
\r
168 int space = id.indexOf(" ");
\r
171 seq = new Sequence(id.substring(0, space),"");
\r
172 seq.setDescription(id.substring(space+1));
\r
176 seq = new Sequence(id, "");
\r
183 * Creates the output id.
\r
184 * Adds prefix Uniprot format source|id
\r
185 * And suffix Jalview /start-end
\r
187 * @String id Id to be parsed
\r
189 String printId(SequenceI seq)
\r
191 return seq.getDisplayId(jvSuffix);
\r