JAL-1780 JAL-653 organise imports
[jalview.git] / src / jalview / io / AlignFile.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.io;
22
23 import jalview.datamodel.Alignment;
24 import jalview.datamodel.AlignmentAnnotation;
25 import jalview.datamodel.AlignmentI;
26 import jalview.datamodel.Sequence;
27 import jalview.datamodel.SequenceGroup;
28 import jalview.datamodel.SequenceI;
29 import jalview.util.MessageManager;
30
31 import java.io.IOException;
32 import java.util.ArrayList;
33 import java.util.Enumeration;
34 import java.util.Hashtable;
35 import java.util.List;
36 import java.util.Vector;
37
38 /**
39  * DOCUMENT ME!
40  * 
41  * @author $author$
42  * @version $Revision$
43  */
44 public abstract class AlignFile extends FileParse
45 {
46   int noSeqs = 0;
47
48   int maxLength = 0;
49
50   /**
51    * Sequences to be added to form a new alignment.
52    */
53   protected Vector<SequenceI> seqs;
54
55   /**
56    * annotation to be added to generated alignment object
57    */
58   protected Vector<AlignmentAnnotation> annotations;
59
60   /**
61    * SequenceGroups to be added to the alignment object
62    */
63   protected List<SequenceGroup> seqGroups;
64
65   /**
66    * Properties to be added to generated alignment object
67    */
68   protected Hashtable properties;
69
70   long start;
71
72   long end;
73
74   boolean jvSuffix = true;
75
76   private boolean parseCalled;
77
78   /**
79    * Creates a new AlignFile object.
80    */
81   public AlignFile()
82   {
83     // Shouldn't we init data structures (JBPNote: not sure - initData is for
84     // initialising the structures used for reading from a datasource, and the
85     // bare constructor hasn't got any datasource)
86     initData();
87   }
88
89   /**
90    * Constructor which parses the data from a file of some specified type.
91    * 
92    * @param inFile
93    *          Filename to read from.
94    * @param type
95    *          What type of file to read from (File, URL)
96    */
97   public AlignFile(String inFile, String type) throws IOException
98   {
99     this(true, inFile, type);
100   }
101   
102   /**
103    * Constructor which (optionally delays) parsing of data from a file of some specified type.
104    * 
105    * @param parseImmediately
106    *          if false, need to call 'doParse()' to begin parsing data
107    * @param inFile
108    *          Filename to read from.
109    * @param type
110    *          What type of file to read from (File, URL)
111    * @throws IOException
112    */
113   public AlignFile(boolean parseImmediately, String inFile, String type) throws IOException
114   {
115     super(inFile, type);
116     initData();
117     if (parseImmediately) {
118       doParse();
119     }
120   }
121   /**
122    * Attempt to read from the position where some other parsing process left
123    * off.
124    * 
125    * @param source
126    * @throws IOException
127    */
128   public AlignFile(FileParse source) throws IOException
129   {
130     this(true,source);
131   }
132   /**
133    * Construct a new parser to read from the position where some other parsing process left
134    * 
135    * @param parseImmediately
136    *          if false, need to call 'doParse()' to begin parsing data
137    * @param source
138    */
139   public AlignFile(boolean parseImmediately, FileParse source) throws IOException
140   {
141     super(source);
142     initData();
143     if (parseImmediately) {
144       doParse();
145     }
146   }
147   /**
148    * called if parsing was delayed till after parser was constructed
149    * @throws IOException
150    */
151   public void doParse() throws IOException
152   {
153     if (parseCalled)
154     {
155       throw new IOException(
156               "Implementation error: Parser called twice for same data.\n"
157                       + "Need to call initData() again before parsing can be reattempted.");
158     }
159     parseCalled=true;
160     parse();
161     // sets the index of each sequence in the alignment
162     for (int i = 0, c = seqs.size(); i < c; i++)
163     {
164       seqs.get(i).setIndex(i);
165     }
166   }
167
168
169   /**
170    * Return the seqs Vector
171    */
172   public Vector<SequenceI> getSeqs()
173   {
174     return seqs;
175   }
176
177   public List<SequenceGroup> getSeqGroups()
178   {
179     return seqGroups;
180   }
181
182   /**
183    * Return the Sequences in the seqs Vector as an array of Sequences
184    */
185   public SequenceI[] getSeqsAsArray()
186   {
187     SequenceI[] s = new SequenceI[seqs.size()];
188
189     for (int i = 0; i < seqs.size(); i++)
190     {
191       s[i] = seqs.elementAt(i);
192     }
193
194     return s;
195   }
196
197   /**
198    * called by AppletFormatAdapter to generate an annotated alignment, rather
199    * than bare sequences.
200    * 
201    * @param al
202    */
203   public void addAnnotations(Alignment al)
204   {
205     addProperties(al);
206     for (int i = 0; i < annotations.size(); i++)
207     {
208       // detect if annotations.elementAt(i) rna secondary structure
209       // if so then do:
210       /*
211        * SequenceFeature[] pairArray =
212        * Rna.GetBasePairsFromAlignmentAnnotation(annotations.elementAt(i));
213        * Rna.HelixMap(pairArray);
214        */
215       AlignmentAnnotation an = annotations
216               .elementAt(i);
217       an.validateRangeAndDisplay();
218       al.addAnnotation(an);
219     }
220
221   }
222
223   public void addSeqGroups(AlignmentI al)
224   {
225     this.seqGroups = al.getGroups();
226
227   }
228
229   /**
230    * Add any additional information extracted from the file to the alignment
231    * properties.
232    * 
233    * @note implicitly called by addAnnotations()
234    * @param al
235    */
236   public void addProperties(Alignment al)
237   {
238     if (properties != null && properties.size() > 0)
239     {
240       Enumeration keys = properties.keys();
241       Enumeration vals = properties.elements();
242       while (keys.hasMoreElements())
243       {
244         al.setProperty(keys.nextElement(), vals.nextElement());
245       }
246     }
247   }
248
249   /**
250    * Store a non-null key-value pair in a hashtable used to set alignment
251    * properties note: null keys will raise an error, null values will result in
252    * the key/value pair being silently ignored.
253    * 
254    * @param key
255    *          - non-null key object
256    * @param value
257    *          - non-null value
258    */
259   protected void setAlignmentProperty(Object key, Object value)
260   {
261     if (key == null)
262     {
263       throw new Error(MessageManager.getString("error.implementation_error_cannot_have_null_alignment"));
264     }
265     if (value == null)
266     {
267       return; // null properties are ignored.
268     }
269     if (properties == null)
270     {
271       properties = new Hashtable();
272     }
273     properties.put(key, value);
274   }
275
276   protected Object getAlignmentProperty(Object key)
277   {
278     if (properties != null && key != null)
279     {
280       return properties.get(key);
281     }
282     return null;
283   }
284
285   /**
286    * Initialise objects to store sequence data in.
287    */
288   protected void initData()
289   {
290     seqs = new Vector<SequenceI>();
291     annotations = new Vector<AlignmentAnnotation>();
292     seqGroups = new ArrayList<SequenceGroup>();
293     parseCalled=false;
294   }
295
296   /**
297    * DOCUMENT ME!
298    * 
299    * @param s
300    *          DOCUMENT ME!
301    */
302   protected void setSeqs(SequenceI[] s)
303   {
304     seqs = new Vector<SequenceI>();
305
306     for (int i = 0; i < s.length; i++)
307     {
308       seqs.addElement(s[i]);
309     }
310   }
311
312   /**
313    * This method must be implemented to parse the contents of the file.
314    */
315   public abstract void parse() throws IOException;
316
317   /**
318    * Print out in alignment file format the Sequences in the seqs Vector.
319    */
320   public abstract String print();
321
322   public void addJVSuffix(boolean b)
323   {
324     jvSuffix = b;
325   }
326
327   /**
328    * A general parser for ids.
329    * 
330    * @String id Id to be parsed
331    */
332   Sequence parseId(String id)
333   {
334     Sequence seq = null;
335     id = id.trim();
336     int space = id.indexOf(" ");
337     if (space > -1)
338     {
339       seq = new Sequence(id.substring(0, space), "");
340       seq.setDescription(id.substring(space + 1));
341     }
342     else
343     {
344       seq = new Sequence(id, "");
345     }
346
347     return seq;
348   }
349
350   /**
351    * Creates the output id. Adds prefix Uniprot format source|id And suffix
352    * Jalview /start-end
353    * 
354    * @String id Id to be parsed
355    */
356   String printId(SequenceI seq)
357   {
358     return seq.getDisplayId(jvSuffix);
359   }
360
361   /**
362    * vector of String[] treeName, newickString pairs
363    */
364   Vector<String[]> newickStrings = null;
365
366   protected void addNewickTree(String treeName, String newickString)
367   {
368     if (newickStrings == null)
369     {
370       newickStrings = new Vector<String[]>();
371     }
372     newickStrings.addElement(new String[]
373     { treeName, newickString });
374   }
375
376   protected int getTreeCount()
377   {
378     return newickStrings == null ? 0 : newickStrings.size();
379   }
380
381 }