Merge branch 'spike/JAL-2040_JAL-2137_phyre2' into features/JAL-2040_JAL-2137_phyre2
[jalview.git] / src / jalview / io / AnnotationFile.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.analysis.Conservation;
24 import jalview.api.AlignViewportI;
25 import jalview.datamodel.AlignmentAnnotation;
26 import jalview.datamodel.AlignmentI;
27 import jalview.datamodel.Annotation;
28 import jalview.datamodel.ColumnSelection;
29 import jalview.datamodel.GraphLine;
30 import jalview.datamodel.HiddenSequences;
31 import jalview.datamodel.PDBEntry;
32 import jalview.datamodel.PDBEntry.Type;
33 import jalview.datamodel.SequenceGroup;
34 import jalview.datamodel.SequenceI;
35 import jalview.schemes.ColourSchemeI;
36 import jalview.schemes.ColourSchemeProperty;
37 import jalview.schemes.UserColourScheme;
38 import jalview.structure.StructureSelectionManager;
39
40 import java.io.BufferedReader;
41 import java.io.File;
42 import java.io.FileReader;
43 import java.io.IOException;
44 import java.io.InputStreamReader;
45 import java.io.StringReader;
46 import java.net.URL;
47 import java.util.ArrayList;
48 import java.util.BitSet;
49 import java.util.Enumeration;
50 import java.util.Hashtable;
51 import java.util.List;
52 import java.util.Map;
53 import java.util.StringTokenizer;
54 import java.util.Vector;
55
56 public class AnnotationFile
57 {
58   public AnnotationFile()
59   {
60     init();
61   }
62
63   /**
64    * character used to write newlines
65    */
66   protected String newline = System.getProperty("line.separator");
67
68   /**
69    * set new line string and reset the output buffer
70    * 
71    * @param nl
72    */
73   public void setNewlineString(String nl)
74   {
75     newline = nl;
76     init();
77   }
78
79   public String getNewlineString()
80   {
81     return newline;
82   }
83
84   StringBuffer text;
85
86   private void init()
87   {
88     text = new StringBuffer("JALVIEW_ANNOTATION" + newline + "# Created: "
89             + new java.util.Date() + newline + newline);
90     refSeq = null;
91     refSeqId = null;
92   }
93
94   /**
95    * convenience method for pre-2.9 annotation files which have no view, hidden
96    * columns or hidden row keywords.
97    * 
98    * @param annotations
99    * @param list
100    * @param properties
101    * @return annotation file as a string.
102    */
103   public String printAnnotations(AlignmentAnnotation[] annotations,
104           List<SequenceGroup> list, Hashtable properties)
105   {
106     return printAnnotations(annotations, list, properties, null, null, null);
107
108   }
109
110   /**
111    * hold all the information about a particular view definition read from or
112    * written out in an annotations file.
113    */
114   public class ViewDef
115   {
116     public String viewname;
117
118     public HiddenSequences hidseqs;
119
120     public ColumnSelection hiddencols;
121
122     public Vector visibleGroups;
123
124     public Hashtable hiddenRepSeqs;
125
126     public ViewDef(String viewname, HiddenSequences hidseqs,
127             ColumnSelection hiddencols, Hashtable hiddenRepSeqs)
128     {
129       this.viewname = viewname;
130       this.hidseqs = hidseqs;
131       this.hiddencols = hiddencols;
132       this.hiddenRepSeqs = hiddenRepSeqs;
133     }
134   }
135
136   /**
137    * Prepare an annotation file given a set of annotations, groups, alignment
138    * properties and views.
139    * 
140    * @param annotations
141    * @param list
142    * @param properties
143    * @param views
144    * @return annotation file
145    */
146   public String printAnnotations(AlignmentAnnotation[] annotations,
147           List<SequenceGroup> list, Hashtable properties,
148           ColumnSelection cs, AlignmentI al, ViewDef view)
149   {
150     if (view != null)
151     {
152       if (view.viewname != null)
153       {
154         text.append("VIEW_DEF\t" + view.viewname + "\n");
155       }
156       if (list == null)
157       {
158         list = view.visibleGroups;
159       }
160       if (cs == null)
161       {
162         cs = view.hiddencols;
163       }
164       if (al == null)
165       {
166         // add hidden rep sequences.
167       }
168     }
169     // first target - store and restore all settings for a view.
170     if (al != null && al.hasSeqrep())
171     {
172       text.append("VIEW_SETREF\t" + al.getSeqrep().getName() + "\n");
173     }
174     if (cs != null && cs.hasHiddenColumns())
175     {
176       text.append("VIEW_HIDECOLS\t");
177       List<int[]> hc = cs.getHiddenColumns();
178       boolean comma = false;
179       for (int[] r : hc)
180       {
181         if (!comma)
182         {
183           comma = true;
184         }
185         else
186         {
187           text.append(",");
188         }
189         text.append(r[0]);
190         text.append("-");
191         text.append(r[1]);
192       }
193       text.append("\n");
194     }
195     // TODO: allow efficient recovery of annotation data shown in several
196     // different views
197     if (annotations != null)
198     {
199       boolean oneColour = true;
200       AlignmentAnnotation row;
201       String comma;
202       SequenceI refSeq = null;
203       SequenceGroup refGroup = null;
204
205       StringBuffer colours = new StringBuffer();
206       StringBuffer graphLine = new StringBuffer();
207       StringBuffer rowprops = new StringBuffer();
208       Hashtable<Integer, String> graphGroup = new Hashtable<Integer, String>();
209       Hashtable<Integer, Object[]> graphGroup_refs = new Hashtable<Integer, Object[]>();
210       BitSet graphGroupSeen = new BitSet();
211
212       java.awt.Color color;
213
214       for (int i = 0; i < annotations.length; i++)
215       {
216         row = annotations[i];
217
218         if (!row.visible
219                 && !row.hasScore()
220                 && !(row.graphGroup > -1 && graphGroupSeen
221                         .get(row.graphGroup)))
222         {
223           continue;
224         }
225
226         color = null;
227         oneColour = true;
228
229         // mark any sequence references for the row
230         writeSequence_Ref(refSeq, row.sequenceRef);
231         refSeq = row.sequenceRef;
232         // mark any group references for the row
233         writeGroup_Ref(refGroup, row.groupRef);
234         refGroup = row.groupRef;
235
236         boolean hasGlyphs = row.hasIcons, hasLabels = row.hasText, hasValues = row.hasScore, hasText = false;
237         // lookahead to check what the annotation row object actually contains.
238         for (int j = 0; row.annotations != null
239                 && j < row.annotations.length
240                 && (!hasGlyphs || !hasLabels || !hasValues); j++)
241         {
242           if (row.annotations[j] != null)
243           {
244             hasLabels |= (row.annotations[j].displayCharacter != null
245                     && row.annotations[j].displayCharacter.length() > 0 && !row.annotations[j].displayCharacter
246                     .equals(" "));
247             hasGlyphs |= (row.annotations[j].secondaryStructure != 0 && row.annotations[j].secondaryStructure != ' ');
248             hasValues |= (!Float.isNaN(row.annotations[j].value)); // NaNs can't
249             // be
250             // rendered..
251             hasText |= (row.annotations[j].description != null && row.annotations[j].description
252                     .length() > 0);
253           }
254         }
255
256         if (row.graph == AlignmentAnnotation.NO_GRAPH)
257         {
258           text.append("NO_GRAPH\t");
259           hasValues = false; // only secondary structure
260           // hasLabels = false; // and annotation description string.
261         }
262         else
263         {
264           if (row.graph == AlignmentAnnotation.BAR_GRAPH)
265           {
266             text.append("BAR_GRAPH\t");
267             hasGlyphs = false; // no secondary structure
268
269           }
270           else if (row.graph == AlignmentAnnotation.LINE_GRAPH)
271           {
272             hasGlyphs = false; // no secondary structure
273             text.append("LINE_GRAPH\t");
274           }
275
276           if (row.getThreshold() != null)
277           {
278             graphLine.append("GRAPHLINE\t");
279             graphLine.append(row.label);
280             graphLine.append("\t");
281             graphLine.append(row.getThreshold().value);
282             graphLine.append("\t");
283             graphLine.append(row.getThreshold().label);
284             graphLine.append("\t");
285             graphLine.append(jalview.util.Format.getHexString(row
286                     .getThreshold().colour));
287             graphLine.append(newline);
288           }
289
290           if (row.graphGroup > -1)
291           {
292             graphGroupSeen.set(row.graphGroup);
293             Integer key = new Integer(row.graphGroup);
294             if (graphGroup.containsKey(key))
295             {
296               graphGroup.put(key, graphGroup.get(key) + "\t" + row.label);
297
298             }
299             else
300             {
301               graphGroup_refs.put(key, new Object[] { refSeq, refGroup });
302               graphGroup.put(key, row.label);
303             }
304           }
305         }
306
307         text.append(row.label + "\t");
308         if (row.description != null)
309         {
310           text.append(row.description + "\t");
311         }
312         for (int j = 0; row.annotations != null
313                 && j < row.annotations.length; j++)
314         {
315           if (refSeq != null
316                   && jalview.util.Comparison.isGap(refSeq.getCharAt(j)))
317           {
318             continue;
319           }
320
321           if (row.annotations[j] != null)
322           {
323             comma = "";
324             if (hasGlyphs) // could be also hasGlyphs || ...
325             {
326
327               text.append(comma);
328               if (row.annotations[j].secondaryStructure != ' ')
329               {
330                 // only write out the field if its not whitespace.
331                 text.append(row.annotations[j].secondaryStructure);
332               }
333               comma = ",";
334             }
335             if (hasValues)
336             {
337               if (!Float.isNaN(row.annotations[j].value))
338               {
339                 text.append(comma + row.annotations[j].value);
340               }
341               else
342               {
343                 // System.err.println("Skipping NaN - not valid value.");
344                 text.append(comma + 0f);// row.annotations[j].value);
345               }
346               comma = ",";
347             }
348             if (hasLabels)
349             {
350               // TODO: labels are emitted after values for bar graphs.
351               if // empty labels are allowed, so
352               (row.annotations[j].displayCharacter != null
353                       && row.annotations[j].displayCharacter.length() > 0
354                       && !row.annotations[j].displayCharacter.equals(" "))
355               {
356                 text.append(comma + row.annotations[j].displayCharacter);
357                 comma = ",";
358               }
359             }
360             if (hasText)
361             {
362               if (row.annotations[j].description != null
363                       && row.annotations[j].description.length() > 0
364                       && !row.annotations[j].description
365                               .equals(row.annotations[j].displayCharacter))
366               {
367                 text.append(comma + row.annotations[j].description);
368                 comma = ",";
369               }
370             }
371             if (color != null && !color.equals(row.annotations[j].colour))
372             {
373               oneColour = false;
374             }
375
376             color = row.annotations[j].colour;
377
378             if (row.annotations[j].colour != null
379                     && row.annotations[j].colour != java.awt.Color.black)
380             {
381               text.append(comma
382                       + "["
383                       + jalview.util.Format
384                               .getHexString(row.annotations[j].colour)
385                       + "]");
386               comma = ",";
387             }
388           }
389           text.append("|");
390         }
391
392         if (row.hasScore())
393         {
394           text.append("\t" + row.score);
395         }
396
397         text.append(newline);
398
399         if (color != null && color != java.awt.Color.black && oneColour)
400         {
401           colours.append("COLOUR\t");
402           colours.append(row.label);
403           colours.append("\t");
404           colours.append(jalview.util.Format.getHexString(color));
405           colours.append(newline);
406         }
407         if (row.scaleColLabel || row.showAllColLabels
408                 || row.centreColLabels)
409         {
410           rowprops.append("ROWPROPERTIES\t");
411           rowprops.append(row.label);
412           rowprops.append("\tscaletofit=");
413           rowprops.append(row.scaleColLabel);
414           rowprops.append("\tshowalllabs=");
415           rowprops.append(row.showAllColLabels);
416           rowprops.append("\tcentrelabs=");
417           rowprops.append(row.centreColLabels);
418           rowprops.append(newline);
419         }
420         if (graphLine.length() > 0)
421         {
422           text.append(graphLine.toString());
423           graphLine.setLength(0);
424         }
425       }
426
427       text.append(newline);
428
429       text.append(colours.toString());
430       if (graphGroup.size() > 0)
431       {
432         SequenceI oldRefSeq = refSeq;
433         SequenceGroup oldRefGroup = refGroup;
434         for (Map.Entry<Integer, String> combine_statement : graphGroup
435                 .entrySet())
436         {
437           Object[] seqRefAndGroup = graphGroup_refs.get(combine_statement
438                   .getKey());
439
440           writeSequence_Ref(refSeq, (SequenceI) seqRefAndGroup[0]);
441           refSeq = (SequenceI) seqRefAndGroup[0];
442
443           writeGroup_Ref(refGroup, (SequenceGroup) seqRefAndGroup[1]);
444           refGroup = (SequenceGroup) seqRefAndGroup[1];
445           text.append("COMBINE\t");
446           text.append(combine_statement.getValue());
447           text.append(newline);
448         }
449         writeSequence_Ref(refSeq, oldRefSeq);
450         refSeq = oldRefSeq;
451
452         writeGroup_Ref(refGroup, oldRefGroup);
453         refGroup = oldRefGroup;
454       }
455       text.append(rowprops.toString());
456     }
457
458     if (list != null)
459     {
460       printGroups(list);
461     }
462
463     if (properties != null)
464     {
465       text.append(newline);
466       text.append(newline);
467       text.append("ALIGNMENT");
468       Enumeration en = properties.keys();
469       while (en.hasMoreElements())
470       {
471         String key = en.nextElement().toString();
472         text.append("\t");
473         text.append(key);
474         text.append("=");
475         text.append(properties.get(key));
476       }
477       // TODO: output alignment visualization settings here if required
478       // iterate through one or more views, defining, marking columns and rows
479       // as visible/hidden, and emmitting view properties.
480       // View specific annotation is
481     }
482
483     return text.toString();
484   }
485
486   private Object writeGroup_Ref(SequenceGroup refGroup,
487           SequenceGroup next_refGroup)
488   {
489     if (next_refGroup == null)
490     {
491
492       if (refGroup != null)
493       {
494         text.append(newline);
495         text.append("GROUP_REF\t");
496         text.append("ALIGNMENT");
497         text.append(newline);
498       }
499       return true;
500     }
501     else
502     {
503       if (refGroup == null || refGroup != next_refGroup)
504       {
505         text.append(newline);
506         text.append("GROUP_REF\t");
507         text.append(next_refGroup.getName());
508         text.append(newline);
509         return true;
510       }
511     }
512     return false;
513   }
514
515   private boolean writeSequence_Ref(SequenceI refSeq, SequenceI next_refSeq)
516   {
517
518     if (next_refSeq == null)
519     {
520       if (refSeq != null)
521       {
522         text.append(newline);
523         text.append("SEQUENCE_REF\t");
524         text.append("ALIGNMENT");
525         text.append(newline);
526         return true;
527       }
528     }
529     else
530     {
531       if (refSeq == null || refSeq != next_refSeq)
532       {
533         text.append(newline);
534         text.append("SEQUENCE_REF\t");
535         text.append(next_refSeq.getName());
536         text.append(newline);
537         return true;
538       }
539     }
540     return false;
541   }
542
543   public void printGroups(List<SequenceGroup> list)
544   {
545     SequenceI seqrep = null;
546     for (SequenceGroup sg : list)
547     {
548       if (!sg.hasSeqrep())
549       {
550         text.append("SEQUENCE_GROUP\t" + sg.getName() + "\t"
551                 + (sg.getStartRes() + 1) + "\t" + (sg.getEndRes() + 1)
552                 + "\t" + "-1\t");
553         seqrep = null;
554       }
555       else
556       {
557         seqrep = sg.getSeqrep();
558         text.append("SEQUENCE_REF\t");
559         text.append(seqrep.getName());
560         text.append(newline);
561         text.append("SEQUENCE_GROUP\t");
562         text.append(sg.getName());
563         text.append("\t");
564         text.append((seqrep.findPosition(sg.getStartRes())));
565         text.append("\t");
566         text.append((seqrep.findPosition(sg.getEndRes())));
567         text.append("\t");
568         text.append("-1\t");
569       }
570       for (int s = 0; s < sg.getSize(); s++)
571       {
572         text.append(sg.getSequenceAt(s).getName());
573         text.append("\t");
574       }
575       text.append(newline);
576       text.append("PROPERTIES\t");
577       text.append(sg.getName());
578       text.append("\t");
579
580       if (sg.getDescription() != null)
581       {
582         text.append("description=");
583         text.append(sg.getDescription());
584         text.append("\t");
585       }
586       if (sg.cs != null)
587       {
588         text.append("colour=");
589         text.append(ColourSchemeProperty.getColourName(sg.cs));
590         text.append("\t");
591         if (sg.cs.getThreshold() != 0)
592         {
593           text.append("pidThreshold=");
594           text.append(sg.cs.getThreshold());
595         }
596         if (sg.cs.conservationApplied())
597         {
598           text.append("consThreshold=");
599           text.append(sg.cs.getConservationInc());
600           text.append("\t");
601         }
602       }
603       text.append("outlineColour=");
604       text.append(jalview.util.Format.getHexString(sg.getOutlineColour()));
605       text.append("\t");
606
607       text.append("displayBoxes=");
608       text.append(sg.getDisplayBoxes());
609       text.append("\t");
610       text.append("displayText=");
611       text.append(sg.getDisplayText());
612       text.append("\t");
613       text.append("colourText=");
614       text.append(sg.getColourText());
615       text.append("\t");
616       text.append("showUnconserved=");
617       text.append(sg.getShowNonconserved());
618       text.append("\t");
619       if (sg.textColour != java.awt.Color.black)
620       {
621         text.append("textCol1=");
622         text.append(jalview.util.Format.getHexString(sg.textColour));
623         text.append("\t");
624       }
625       if (sg.textColour2 != java.awt.Color.white)
626       {
627         text.append("textCol2=");
628         text.append(jalview.util.Format.getHexString(sg.textColour2));
629         text.append("\t");
630       }
631       if (sg.thresholdTextColour != 0)
632       {
633         text.append("textColThreshold=");
634         text.append(sg.thresholdTextColour);
635         text.append("\t");
636       }
637       if (sg.idColour != null)
638       {
639         text.append("idColour=");
640         text.append(jalview.util.Format.getHexString(sg.idColour));
641         text.append("\t");
642       }
643       if (sg.isHidereps())
644       {
645         text.append("hide=true\t");
646       }
647       if (sg.isHideCols())
648       {
649         text.append("hidecols=true\t");
650       }
651       if (seqrep != null)
652       {
653         // terminate the last line and clear the sequence ref for the group
654         text.append(newline);
655         text.append("SEQUENCE_REF");
656       }
657       text.append(newline);
658       text.append(newline);
659
660     }
661   }
662
663   SequenceI refSeq = null;
664
665   String refSeqId = null;
666
667   public boolean annotateAlignmentView(AlignViewportI viewport,
668           String file, String protocol)
669   {
670     ColumnSelection colSel = viewport.getColumnSelection();
671     if (colSel == null)
672     {
673       colSel = new ColumnSelection();
674     }
675     boolean rslt = readAnnotationFile(viewport.getAlignment(), colSel,
676             file, protocol);
677     if (rslt && (colSel.hasSelectedColumns() || colSel.hasHiddenColumns()))
678     {
679       viewport.setColumnSelection(colSel);
680     }
681
682     return rslt;
683   }
684
685   public boolean readAnnotationFile(AlignmentI al, String file,
686           String protocol)
687   {
688     return readAnnotationFile(al, null, file, protocol);
689   }
690
691   public boolean readAnnotationFile(AlignmentI al, ColumnSelection colSel,
692           String file, String protocol)
693   {
694     baseUri = "";
695     BufferedReader in = null;
696     try
697     {
698       if (protocol.equals(AppletFormatAdapter.FILE))
699       {
700         in = new BufferedReader(new FileReader(file));
701         baseUri = new File(file).getParent();
702         if (baseUri == null)
703         {
704           baseUri = "";
705         }
706         else
707         {
708           baseUri += "/";
709         }
710       }
711       else if (protocol.equals(AppletFormatAdapter.URL))
712       {
713         URL url = new URL(file);
714         in = new BufferedReader(new InputStreamReader(url.openStream()));
715         String bs = url.toExternalForm();
716         baseUri = bs.substring(0, bs.indexOf(url.getHost())
717                 + url.getHost().length());
718         baseUri += url.toURI().getPath();
719         if (baseUri.lastIndexOf("/") > -1)
720         {
721           baseUri = baseUri.substring(0, baseUri.lastIndexOf("/")) + "/";
722         }
723       }
724       else if (protocol.equals(AppletFormatAdapter.PASTE))
725       {
726         in = new BufferedReader(new StringReader(file));
727         // TODO - support mimencoded PDBs for a paste.. ?
728         baseUri = "";
729       }
730       else if (protocol.equals(AppletFormatAdapter.CLASSLOADER))
731       {
732         java.io.InputStream is = getClass().getResourceAsStream("/" + file);
733         if (is != null)
734         {
735           in = new BufferedReader(new java.io.InputStreamReader(is));
736           // TODO: this probably doesn't work for classloader - needs a test
737           baseUri = new File("/" + file).getParent() + "/";
738         }
739       }
740       if (in != null)
741       {
742         return parseAnnotationFrom(al, colSel, in);
743       }
744
745     } catch (Exception ex)
746     {
747       ex.printStackTrace();
748       System.out.println("Problem reading annotation file: " + ex);
749       if (nlinesread > 0)
750       {
751         System.out.println("Last read line " + nlinesread + ": '"
752                 + lastread + "' (first 80 chars) ...");
753       }
754       return false;
755     }
756     return false;
757   }
758
759   long nlinesread = 0;
760
761   String lastread = "";
762
763   /**
764    * used for resolving absolute references to resources relative to
765    * annotationFile location
766    */
767   String baseUri = "";
768
769   private static String GRAPHLINE = "GRAPHLINE", COMBINE = "COMBINE",
770           STRUCTMODEL = "STRUCTMODEL";
771
772   public boolean parseAnnotationFrom(AlignmentI al, ColumnSelection colSel,
773           BufferedReader in) throws Exception
774   {
775     nlinesread = 0;
776     ArrayList<Object[]> combineAnnotation_calls = new ArrayList<Object[]>();
777     ArrayList<Object[]> deferredAnnotation_calls = new ArrayList<Object[]>();
778     boolean modified = false;
779     String groupRef = null;
780     Hashtable groupRefRows = new Hashtable();
781
782     Hashtable autoAnnots = new Hashtable();
783     {
784       String line, label, description, token;
785       int graphStyle, index;
786       int refSeqIndex = 1;
787       int existingAnnotations = 0;
788       // when true - will add new rows regardless of whether they are duplicate
789       // auto-annotation like consensus or conservation graphs
790       boolean overrideAutoAnnot = false;
791       if (al.getAlignmentAnnotation() != null)
792       {
793         existingAnnotations = al.getAlignmentAnnotation().length;
794         if (existingAnnotations > 0)
795         {
796           AlignmentAnnotation[] aa = al.getAlignmentAnnotation();
797           for (int aai = 0; aai < aa.length; aai++)
798           {
799             if (aa[aai].autoCalculated)
800             {
801               // make a note of the name and description
802               autoAnnots.put(
803                       autoAnnotsKey(aa[aai], aa[aai].sequenceRef,
804                               (aa[aai].groupRef == null ? null
805                                       : aa[aai].groupRef.getName())),
806                       new Integer(1));
807             }
808           }
809         }
810       }
811
812       int alWidth = al.getWidth();
813
814       StringTokenizer st;
815       Annotation[] annotations;
816       AlignmentAnnotation annotation = null;
817
818       // First confirm this is an Annotation file
819       boolean jvAnnotationFile = false;
820       while ((line = in.readLine()) != null)
821       {
822         nlinesread++;
823         lastread = new String(line);
824         if (line.indexOf("#") == 0)
825         {
826           continue;
827         }
828
829         if (line.indexOf("JALVIEW_ANNOTATION") > -1)
830         {
831           jvAnnotationFile = true;
832           break;
833         }
834       }
835
836       if (!jvAnnotationFile)
837       {
838         in.close();
839         return false;
840       }
841
842       while ((line = in.readLine()) != null)
843       {
844         nlinesread++;
845         lastread = new String(line);
846         if (line.indexOf("#") == 0
847                 || line.indexOf("JALVIEW_ANNOTATION") > -1
848                 || line.length() == 0)
849         {
850           continue;
851         }
852
853         st = new StringTokenizer(line, "\t");
854         token = st.nextToken();
855         if (token.equalsIgnoreCase("COLOUR"))
856         {
857           // TODO: use graduated colour def'n here too
858           colourAnnotations(al, st.nextToken(), st.nextToken());
859           modified = true;
860           continue;
861         }
862
863         else if (token.equalsIgnoreCase(COMBINE))
864         {
865           // keep a record of current state and resolve groupRef at end
866           combineAnnotation_calls
867                   .add(new Object[] { st, refSeq, groupRef });
868           modified = true;
869           continue;
870         }
871         else if (token.equalsIgnoreCase("ROWPROPERTIES"))
872         {
873           addRowProperties(al, st);
874           modified = true;
875           continue;
876         }
877         else if (token.equalsIgnoreCase(GRAPHLINE))
878         {
879           // resolve at end
880           deferredAnnotation_calls.add(new Object[] { GRAPHLINE, st,
881               refSeq, groupRef });
882           modified = true;
883           continue;
884         }
885
886         else if (token.equalsIgnoreCase("SEQUENCE_REF"))
887         {
888           if (st.hasMoreTokens())
889           {
890             refSeq = al.findName(refSeqId = st.nextToken());
891             if (refSeq == null)
892             {
893               refSeqId = null;
894             }
895             try
896             {
897               refSeqIndex = Integer.parseInt(st.nextToken());
898               if (refSeqIndex < 1)
899               {
900                 refSeqIndex = 1;
901                 System.out
902                         .println("WARNING: SEQUENCE_REF index must be > 0 in AnnotationFile");
903               }
904             } catch (Exception ex)
905             {
906               refSeqIndex = 1;
907             }
908           }
909           else
910           {
911             refSeq = null;
912             refSeqId = null;
913           }
914           continue;
915         }
916         else if (token.equalsIgnoreCase("GROUP_REF"))
917         {
918           // Group references could be forward or backwards, so they are
919           // resolved after the whole file is read in
920           groupRef = null;
921           if (st.hasMoreTokens())
922           {
923             groupRef = st.nextToken();
924             if (groupRef.length() < 1)
925             {
926               groupRef = null; // empty string
927             }
928             else
929             {
930               if (groupRefRows.get(groupRef) == null)
931               {
932                 groupRefRows.put(groupRef, new Vector());
933               }
934             }
935           }
936           continue;
937         }
938         else if (token.equalsIgnoreCase("SEQUENCE_GROUP"))
939         {
940           addGroup(al, st);
941           modified = true;
942           continue;
943         }
944
945         else if (token.equalsIgnoreCase("PROPERTIES"))
946         {
947           addProperties(al, st);
948           modified = true;
949           continue;
950         }
951
952         else if (token.equalsIgnoreCase("BELOW_ALIGNMENT"))
953         {
954           setBelowAlignment(al, st);
955           modified = true;
956           continue;
957         }
958         else if (token.equalsIgnoreCase("ALIGNMENT"))
959         {
960           addAlignmentDetails(al, st);
961           modified = true;
962           continue;
963         }
964         // else if (token.equalsIgnoreCase("VIEW_DEF"))
965         // {
966         // addOrSetView(al,st);
967         // modified = true;
968         // continue;
969         // }
970         else if (token.equalsIgnoreCase("VIEW_SETREF"))
971         {
972           if (refSeq != null)
973           {
974             al.setSeqrep(refSeq);
975           }
976           modified = true;
977           continue;
978         }
979         else if (token.equalsIgnoreCase("VIEW_HIDECOLS"))
980         {
981           if (st.hasMoreTokens())
982           {
983             if (colSel == null)
984             {
985               colSel = new ColumnSelection();
986             }
987             parseHideCols(colSel, st.nextToken());
988           }
989           modified = true;
990           continue;
991         }
992         else if (token.equalsIgnoreCase("HIDE_INSERTIONS"))
993         {
994           SequenceI sr = refSeq == null ? al.getSeqrep() : refSeq;
995           if (sr == null)
996           {
997             sr = al.getSequenceAt(0);
998           }
999           if (sr != null)
1000           {
1001             if (colSel == null)
1002             {
1003               System.err
1004                       .println("Cannot process HIDE_INSERTIONS without an alignment view: Ignoring line: "
1005                               + line);
1006             }
1007             else
1008             {
1009               // consider deferring this till after the file has been parsed ?
1010               colSel.hideInsertionsFor(sr);
1011             }
1012           }
1013           modified = true;
1014           continue;
1015         }
1016         else if (token.equalsIgnoreCase(STRUCTMODEL))
1017         {
1018           boolean failedtoadd = true;
1019           // expect
1020           // STRUCTMODEL <QUERYID> <TemplateID> <URL to model> <URL to
1021           // alignment>
1022           if (st.hasMoreTokens()) {
1023             refSeq = al.findName(refSeqId = st.nextToken());
1024             if (refSeq == null)
1025             {
1026               System.err.println("Couldn't locate " + refSeqId
1027                       + " in the alignment for STRUCTMODEL");
1028               refSeqId = null;
1029             }
1030             else
1031             {
1032               String tempId = st.nextToken();
1033               String urlToModel = st.nextToken();
1034               String urlToPairwise = st.hasMoreTokens() ? st.nextToken()
1035                       : "";
1036               if (add_structmodel(al, refSeq, tempId, urlToModel,
1037                       urlToPairwise))
1038               {
1039                 failedtoadd = false;
1040               }
1041             }
1042           }
1043           if (failedtoadd)
1044           {
1045             System.err
1046                     .println("Need <QueryId> <TemplateId> <URL to Model> [<URL to pairwise alignment>] as tab separated fields after "
1047                             + STRUCTMODEL);
1048           } else {
1049             modified = true;
1050           }
1051           continue;
1052         }
1053         // Parse out the annotation row
1054         graphStyle = AlignmentAnnotation.getGraphValueFromString(token);
1055         label = st.nextToken();
1056
1057         index = 0;
1058         annotations = new Annotation[alWidth];
1059         description = null;
1060         float score = Float.NaN;
1061
1062         if (st.hasMoreTokens())
1063         {
1064           line = st.nextToken();
1065
1066           if (line.indexOf("|") == -1)
1067           {
1068             description = line;
1069             if (st.hasMoreTokens())
1070             {
1071               line = st.nextToken();
1072             }
1073           }
1074
1075           if (st.hasMoreTokens())
1076           {
1077             // This must be the score
1078             score = Float.valueOf(st.nextToken()).floatValue();
1079           }
1080
1081           st = new StringTokenizer(line, "|", true);
1082
1083           boolean emptyColumn = true;
1084           boolean onlyOneElement = (st.countTokens() == 1);
1085
1086           while (st.hasMoreElements() && index < alWidth)
1087           {
1088             token = st.nextToken().trim();
1089
1090             if (onlyOneElement)
1091             {
1092               try
1093               {
1094                 score = Float.valueOf(token).floatValue();
1095                 break;
1096               } catch (NumberFormatException ex)
1097               {
1098               }
1099             }
1100
1101             if (token.equals("|"))
1102             {
1103               if (emptyColumn)
1104               {
1105                 index++;
1106               }
1107
1108               emptyColumn = true;
1109             }
1110             else
1111             {
1112               annotations[index++] = parseAnnotation(token, graphStyle);
1113               emptyColumn = false;
1114             }
1115           }
1116
1117         }
1118
1119         annotation = new AlignmentAnnotation(label, description,
1120                 (index == 0) ? null : annotations, 0, 0, graphStyle);
1121
1122         annotation.score = score;
1123         if (!overrideAutoAnnot
1124                 && autoAnnots.containsKey(autoAnnotsKey(annotation, refSeq,
1125                         groupRef)))
1126         {
1127           // skip - we've already got an automatic annotation of this type.
1128           continue;
1129         }
1130         // otherwise add it!
1131         if (refSeq != null)
1132         {
1133
1134           annotation.belowAlignment = false;
1135           // make a copy of refSeq so we can find other matches in the alignment
1136           SequenceI referedSeq = refSeq;
1137           do
1138           {
1139             // copy before we do any mapping business.
1140             // TODO: verify that undo/redo with 1:many sequence associated
1141             // annotations can be undone correctly
1142             AlignmentAnnotation ann = new AlignmentAnnotation(annotation);
1143             annotation
1144                     .createSequenceMapping(referedSeq, refSeqIndex, false);
1145             annotation.adjustForAlignment();
1146             referedSeq.addAlignmentAnnotation(annotation);
1147             al.addAnnotation(annotation);
1148             al.setAnnotationIndex(annotation,
1149                     al.getAlignmentAnnotation().length
1150                             - existingAnnotations - 1);
1151             if (groupRef != null)
1152             {
1153               ((Vector) groupRefRows.get(groupRef)).addElement(annotation);
1154             }
1155             // and recover our virgin copy to use again if necessary.
1156             annotation = ann;
1157
1158           } while (refSeqId != null
1159                   && (referedSeq = al.findName(referedSeq, refSeqId, true)) != null);
1160         }
1161         else
1162         {
1163           al.addAnnotation(annotation);
1164           al.setAnnotationIndex(annotation,
1165                   al.getAlignmentAnnotation().length - existingAnnotations
1166                           - 1);
1167           if (groupRef != null)
1168           {
1169             ((Vector) groupRefRows.get(groupRef)).addElement(annotation);
1170           }
1171         }
1172         // and set modification flag
1173         modified = true;
1174       }
1175       // Resolve the groupRefs
1176       Hashtable<String, SequenceGroup> groupRefLookup = new Hashtable<String, SequenceGroup>();
1177       Enumeration en = groupRefRows.keys();
1178
1179       while (en.hasMoreElements())
1180       {
1181         groupRef = (String) en.nextElement();
1182         boolean matched = false;
1183         // Resolve group: TODO: add a getGroupByName method to alignments
1184         for (SequenceGroup theGroup : al.getGroups())
1185         {
1186           if (theGroup.getName().equals(groupRef))
1187           {
1188             if (matched)
1189             {
1190               // TODO: specify and implement duplication of alignment annotation
1191               // for multiple group references.
1192               System.err
1193                       .println("Ignoring 1:many group reference mappings for group name '"
1194                               + groupRef + "'");
1195             }
1196             else
1197             {
1198               matched = true;
1199               Vector rowset = (Vector) groupRefRows.get(groupRef);
1200               groupRefLookup.put(groupRef, theGroup);
1201               if (rowset != null && rowset.size() > 0)
1202               {
1203                 AlignmentAnnotation alan = null;
1204                 for (int elm = 0, elmSize = rowset.size(); elm < elmSize; elm++)
1205                 {
1206                   alan = (AlignmentAnnotation) rowset.elementAt(elm);
1207                   alan.groupRef = theGroup;
1208                 }
1209               }
1210             }
1211           }
1212         }
1213         ((Vector) groupRefRows.get(groupRef)).removeAllElements();
1214       }
1215       // process any deferred attribute settings for each context
1216       for (Object[] _deferred_args : deferredAnnotation_calls)
1217       {
1218         if (_deferred_args[0] == GRAPHLINE)
1219         {
1220           addLine(al,
1221                   (StringTokenizer) _deferred_args[1], // st
1222                   (SequenceI) _deferred_args[2], // refSeq
1223                   (_deferred_args[3] == null) ? null : groupRefLookup
1224                           .get(_deferred_args[3]) // the reference
1225                                                   // group, or null
1226           );
1227         }
1228       }
1229
1230       // finally, combine all the annotation rows within each context.
1231       /**
1232        * number of combine statements in this annotation file. Used to create
1233        * new groups for combined annotation graphs without disturbing existing
1234        * ones
1235        */
1236       int combinecount = 0;
1237       for (Object[] _combine_args : combineAnnotation_calls)
1238       {
1239         combineAnnotations(al,
1240                 ++combinecount,
1241                 (StringTokenizer) _combine_args[0], // st
1242                 (SequenceI) _combine_args[1], // refSeq
1243                 (_combine_args[2] == null) ? null : groupRefLookup
1244                         .get(_combine_args[2]) // the reference group,
1245                                                // or null
1246         );
1247       }
1248     }
1249     return modified;
1250   }
1251
1252   /**
1253    * resolve a structural model and generate and add an alignment sequence for
1254    * it
1255    * 
1256    * @param refSeq2
1257    * @param tempId
1258    * @param urlToModel
1259    * @param urlToPairwise
1260    * @return true if model and sequence was added
1261    */
1262   private boolean add_structmodel(AlignmentI al, SequenceI refSeq2, String tempId,
1263           String urlToModel, String urlToPairwise)
1264   {
1265     String warningMessage = null, modelPath = null, modelProt = null, aliPath = null, aliProt = null;
1266     boolean added = false;
1267     try {
1268       // locate tempId. if it exists, will need to merge, otherwise:
1269       SequenceI templateSeq = al.findName(tempId);
1270       // 1. load urlToModel
1271       modelPath = resolveAbsolute(urlToModel);
1272       modelProt = AppletFormatAdapter.checkProtocol(modelPath);
1273       // need to transfer to local temp file ?
1274       PDBEntry modelpe = new PDBEntry(tempId, null, Type.FILE, modelPath);
1275       PDBEntry templpe = new PDBEntry(tempId, null, Type.FILE, modelPath);
1276       refSeq2.addPDBId(modelpe);
1277       aliPath = resolveAbsolute(urlToPairwise);
1278       aliProt = AppletFormatAdapter.checkProtocol(aliPath);
1279       // 2. load urlToPairwise
1280       AlignmentI pwa = new AppletFormatAdapter().readFile(aliPath, aliProt,
1281               "FASTA");
1282       SequenceI qPw = null, tPw = null;
1283       if (pwa != null)
1284       {
1285         // resolve query/template sequences in provided alignment
1286         qPw = pwa.findName(refSeqId);
1287         tPw = pwa.findName(tempId);
1288       }
1289       if (false)
1290       // (qPw != null && tPw != null)
1291       {
1292         // not yet complete
1293         // refalQ vvva--addrvvvtttddd
1294         // refalT ---aaaa---sss---ddd
1295         // profalQ ---v-v-v-a.-.-a---dd--r--vvvtt--td--dd
1296         // profalT ---.-.-.-aa-a-a---..--.--sss..--.d--dd
1297         // Pragmatic solution here:
1298         // Map templpe onto refalT only where refalT and refalQ are both
1299         // non-gaps
1300
1301         // columns for start..end in refSeq2
1302         int[] gapMap = refSeq2.gapMap();
1303         // insert gaps in tPw
1304         int curi = 0, width = refSeq2.getLength();
1305         // TBC
1306       }
1307       else
1308       {
1309         // assume 1:1 - so synthesise sequences to use to construct mapping
1310         StructureFile pdbf = StructureSelectionManager
1311                 .getStructureSelectionManager().setMapping(false,
1312                         new SequenceI[] { refSeq2.getDatasetSequence() },
1313                         null, modelPath, modelProt);
1314         refSeq2.getDatasetSequence().addPDBId(modelpe);
1315         if (templateSeq == null && tPw != null)
1316         {
1317           tPw.createDatasetSequence();
1318           tPw.getDatasetSequence().addPDBId(templpe); // needs to set mapping based on model yet...
1319           al.addSequence(tPw);
1320           added = true;
1321         }
1322       }
1323     // 3. pad/insert gaps in urlToPairwise according to gaps already present in
1324     // refSeq2
1325     // 4. add padded tempId sequence to alignment
1326     // 4. associate urlToModel with refSeq2 based on position map provided by
1327     // urlToPairwise
1328     // 5. associate urlToModel with tempId based on position map provided by
1329     // urlToPairwise
1330     // start a thread to load urlToModel and process/annotate sequences.
1331     } catch (IOException x)
1332     {
1333       warningMessage = x.toString();
1334     } finally {
1335       if (warningMessage !=null)
1336       {
1337         System.err.println("Warnings whilst processing STRUCTMODEL: "+warningMessage);
1338       }
1339       return added;
1340     }
1341   }
1342
1343   private String resolveAbsolute(String relURI)
1344   {
1345     if (relURI.indexOf(":/") > -1 || relURI.startsWith("/")
1346             || "".equals(baseUri) || relURI.startsWith(baseUri))
1347     {
1348       return relURI;
1349     }
1350     return baseUri + relURI;
1351   }
1352
1353   private void parseHideCols(ColumnSelection colSel, String nextToken)
1354   {
1355     StringTokenizer inval = new StringTokenizer(nextToken, ",");
1356     while (inval.hasMoreTokens())
1357     {
1358       String range = inval.nextToken().trim();
1359       int from, to = range.indexOf("-");
1360       if (to == -1)
1361       {
1362         from = to = Integer.parseInt(range);
1363         if (from >= 0)
1364         {
1365           colSel.hideColumns(from, to);
1366         }
1367       }
1368       else
1369       {
1370         from = Integer.parseInt(range.substring(0, to));
1371         if (to < range.length() - 1)
1372         {
1373           to = Integer.parseInt(range.substring(to + 1));
1374         }
1375         else
1376         {
1377           to = from;
1378         }
1379         if (from > 0 && to >= from)
1380         {
1381           colSel.hideColumns(from, to);
1382         }
1383       }
1384     }
1385   }
1386
1387   private Object autoAnnotsKey(AlignmentAnnotation annotation,
1388           SequenceI refSeq, String groupRef)
1389   {
1390     return annotation.graph + "\t" + annotation.label + "\t"
1391             + annotation.description + "\t"
1392             + (refSeq != null ? refSeq.getDisplayId(true) : "");
1393   }
1394
1395   Annotation parseAnnotation(String string, int graphStyle)
1396   {
1397     boolean hasSymbols = (graphStyle == AlignmentAnnotation.NO_GRAPH); // don't
1398     // do the
1399     // glyph
1400     // test
1401     // if we
1402     // don't
1403     // want
1404     // secondary
1405     // structure
1406     String desc = null, displayChar = null;
1407     char ss = ' '; // secondaryStructure
1408     float value = 0;
1409     boolean parsedValue = false, dcset = false;
1410
1411     // find colour here
1412     java.awt.Color colour = null;
1413     int i = string.indexOf("[");
1414     int j = string.indexOf("]");
1415     if (i > -1 && j > -1)
1416     {
1417       UserColourScheme ucs = new UserColourScheme();
1418
1419       colour = ucs.getColourFromString(string.substring(i + 1, j));
1420       if (i > 0 && string.charAt(i - 1) == ',')
1421       {
1422         // clip the preceding comma as well
1423         i--;
1424       }
1425       string = string.substring(0, i) + string.substring(j + 1);
1426     }
1427
1428     StringTokenizer st = new StringTokenizer(string, ",", true);
1429     String token;
1430     boolean seenContent = false;
1431     int pass = 0;
1432     while (st.hasMoreTokens())
1433     {
1434       pass++;
1435       token = st.nextToken().trim();
1436       if (token.equals(","))
1437       {
1438         if (!seenContent && parsedValue && !dcset)
1439         {
1440           // allow the value below the bar/line to be empty
1441           dcset = true;
1442           displayChar = " ";
1443         }
1444         seenContent = false;
1445         continue;
1446       }
1447       else
1448       {
1449         seenContent = true;
1450       }
1451
1452       if (!parsedValue)
1453       {
1454         try
1455         {
1456           displayChar = token;
1457           // foo
1458           value = new Float(token).floatValue();
1459           parsedValue = true;
1460           continue;
1461         } catch (NumberFormatException ex)
1462         {
1463         }
1464       }
1465       else
1466       {
1467         if (token.length() == 1)
1468         {
1469           displayChar = token;
1470         }
1471       }
1472       if (hasSymbols
1473               && (token.length() == 1 && "()<>[]{}AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz"
1474                       .contains(token)))
1475       {
1476         // Either this character represents a helix or sheet
1477         // or an integer which can be displayed
1478         ss = token.charAt(0);
1479         if (displayChar.equals(token.substring(0, 1)))
1480         {
1481           displayChar = "";
1482         }
1483       }
1484       else if (desc == null || (parsedValue && pass > 2))
1485       {
1486         desc = token;
1487       }
1488
1489     }
1490     // if (!dcset && string.charAt(string.length() - 1) == ',')
1491     // {
1492     // displayChar = " "; // empty display char symbol.
1493     // }
1494     if (displayChar != null && desc != null && desc.length() == 1)
1495     {
1496       if (displayChar.length() > 1)
1497       {
1498         // switch desc and displayChar - legacy support
1499         String tmp = displayChar;
1500         displayChar = desc;
1501         desc = tmp;
1502       }
1503       else
1504       {
1505         if (displayChar.equals(desc))
1506         {
1507           // duplicate label - hangover from the 'robust parser' above
1508           desc = null;
1509         }
1510       }
1511     }
1512     Annotation anot = new Annotation(displayChar, desc, ss, value);
1513
1514     anot.colour = colour;
1515
1516     return anot;
1517   }
1518
1519   void colourAnnotations(AlignmentI al, String label, String colour)
1520   {
1521     UserColourScheme ucs = new UserColourScheme(colour);
1522     Annotation[] annotations;
1523     for (int i = 0; i < al.getAlignmentAnnotation().length; i++)
1524     {
1525       if (al.getAlignmentAnnotation()[i].label.equalsIgnoreCase(label))
1526       {
1527         annotations = al.getAlignmentAnnotation()[i].annotations;
1528         for (int j = 0; j < annotations.length; j++)
1529         {
1530           if (annotations[j] != null)
1531           {
1532             annotations[j].colour = ucs.findColour('A');
1533           }
1534         }
1535       }
1536     }
1537   }
1538
1539   void combineAnnotations(AlignmentI al, int combineCount,
1540           StringTokenizer st, SequenceI seqRef, SequenceGroup groupRef)
1541   {
1542     String group = st.nextToken();
1543     // First make sure we are not overwriting the graphIndex
1544     int graphGroup = 0;
1545     if (al.getAlignmentAnnotation() != null)
1546     {
1547       for (int i = 0; i < al.getAlignmentAnnotation().length; i++)
1548       {
1549         AlignmentAnnotation aa = al.getAlignmentAnnotation()[i];
1550
1551         if (aa.graphGroup > graphGroup)
1552         {
1553           // try to number graphGroups in order of occurence.
1554           graphGroup = aa.graphGroup + 1;
1555         }
1556         if (aa.sequenceRef == seqRef && aa.groupRef == groupRef
1557                 && aa.label.equalsIgnoreCase(group))
1558         {
1559           if (aa.graphGroup > -1)
1560           {
1561             graphGroup = aa.graphGroup;
1562           }
1563           else
1564           {
1565             if (graphGroup <= combineCount)
1566             {
1567               graphGroup = combineCount + 1;
1568             }
1569             aa.graphGroup = graphGroup;
1570           }
1571           break;
1572         }
1573       }
1574
1575       // Now update groups
1576       while (st.hasMoreTokens())
1577       {
1578         group = st.nextToken();
1579         for (int i = 0; i < al.getAlignmentAnnotation().length; i++)
1580         {
1581           AlignmentAnnotation aa = al.getAlignmentAnnotation()[i];
1582           if (aa.sequenceRef == seqRef && aa.groupRef == groupRef
1583                   && aa.label.equalsIgnoreCase(group))
1584           {
1585             aa.graphGroup = graphGroup;
1586             break;
1587           }
1588         }
1589       }
1590     }
1591     else
1592     {
1593       System.err
1594               .println("Couldn't combine annotations. None are added to alignment yet!");
1595     }
1596   }
1597
1598   void addLine(AlignmentI al, StringTokenizer st, SequenceI seqRef,
1599           SequenceGroup groupRef)
1600   {
1601     String group = st.nextToken();
1602     AlignmentAnnotation annotation = null, alannot[] = al
1603             .getAlignmentAnnotation();
1604     float value = new Float(st.nextToken()).floatValue();
1605     String label = st.hasMoreTokens() ? st.nextToken() : null;
1606     java.awt.Color colour = null;
1607     if (st.hasMoreTokens())
1608     {
1609       UserColourScheme ucs = new UserColourScheme(st.nextToken());
1610       colour = ucs.findColour('A');
1611     }
1612     if (alannot != null)
1613     {
1614       for (int i = 0; i < alannot.length; i++)
1615       {
1616         if (alannot[i].label.equalsIgnoreCase(group)
1617                 && (seqRef == null || alannot[i].sequenceRef == seqRef)
1618                 && (groupRef == null || alannot[i].groupRef == groupRef))
1619         {
1620           alannot[i].setThreshold(new GraphLine(value, label, colour));
1621         }
1622       }
1623     }
1624     if (annotation == null)
1625     {
1626       return;
1627     }
1628   }
1629
1630   void addGroup(AlignmentI al, StringTokenizer st)
1631   {
1632     SequenceGroup sg = new SequenceGroup();
1633     sg.setName(st.nextToken());
1634     String rng = "";
1635     try
1636     {
1637       rng = st.nextToken();
1638       if (rng.length() > 0 && !rng.startsWith("*"))
1639       {
1640         sg.setStartRes(Integer.parseInt(rng) - 1);
1641       }
1642       else
1643       {
1644         sg.setStartRes(0);
1645       }
1646       rng = st.nextToken();
1647       if (rng.length() > 0 && !rng.startsWith("*"))
1648       {
1649         sg.setEndRes(Integer.parseInt(rng) - 1);
1650       }
1651       else
1652       {
1653         sg.setEndRes(al.getWidth() - 1);
1654       }
1655     } catch (Exception e)
1656     {
1657       System.err
1658               .println("Couldn't parse Group Start or End Field as '*' or a valid column or sequence index: '"
1659                       + rng + "' - assuming alignment width for group.");
1660       // assume group is full width
1661       sg.setStartRes(0);
1662       sg.setEndRes(al.getWidth() - 1);
1663     }
1664
1665     String index = st.nextToken();
1666     if (index.equals("-1"))
1667     {
1668       while (st.hasMoreElements())
1669       {
1670         sg.addSequence(al.findName(st.nextToken()), false);
1671       }
1672     }
1673     else
1674     {
1675       StringTokenizer st2 = new StringTokenizer(index, ",");
1676
1677       while (st2.hasMoreTokens())
1678       {
1679         String tmp = st2.nextToken();
1680         if (tmp.equals("*"))
1681         {
1682           for (int i = 0; i < al.getHeight(); i++)
1683           {
1684             sg.addSequence(al.getSequenceAt(i), false);
1685           }
1686         }
1687         else if (tmp.indexOf("-") >= 0)
1688         {
1689           StringTokenizer st3 = new StringTokenizer(tmp, "-");
1690
1691           int start = (Integer.parseInt(st3.nextToken()));
1692           int end = (Integer.parseInt(st3.nextToken()));
1693
1694           if (end > start)
1695           {
1696             for (int i = start; i <= end; i++)
1697             {
1698               sg.addSequence(al.getSequenceAt(i - 1), false);
1699             }
1700           }
1701         }
1702         else
1703         {
1704           sg.addSequence(al.getSequenceAt(Integer.parseInt(tmp) - 1), false);
1705         }
1706       }
1707     }
1708
1709     if (refSeq != null)
1710     {
1711       sg.setStartRes(refSeq.findIndex(sg.getStartRes() + 1) - 1);
1712       sg.setEndRes(refSeq.findIndex(sg.getEndRes() + 1) - 1);
1713       sg.setSeqrep(refSeq);
1714     }
1715
1716     if (sg.getSize() > 0)
1717     {
1718       al.addGroup(sg);
1719     }
1720   }
1721
1722   void addRowProperties(AlignmentI al, StringTokenizer st)
1723   {
1724     String label = st.nextToken(), keyValue, key, value;
1725     boolean scaletofit = false, centerlab = false, showalllabs = false;
1726     while (st.hasMoreTokens())
1727     {
1728       keyValue = st.nextToken();
1729       key = keyValue.substring(0, keyValue.indexOf("="));
1730       value = keyValue.substring(keyValue.indexOf("=") + 1);
1731       if (key.equalsIgnoreCase("scaletofit"))
1732       {
1733         scaletofit = Boolean.valueOf(value).booleanValue();
1734       }
1735       if (key.equalsIgnoreCase("showalllabs"))
1736       {
1737         showalllabs = Boolean.valueOf(value).booleanValue();
1738       }
1739       if (key.equalsIgnoreCase("centrelabs"))
1740       {
1741         centerlab = Boolean.valueOf(value).booleanValue();
1742       }
1743       AlignmentAnnotation[] alr = al.getAlignmentAnnotation();
1744       if (alr != null)
1745       {
1746         for (int i = 0; i < alr.length; i++)
1747         {
1748           if (alr[i].label.equalsIgnoreCase(label))
1749           {
1750             alr[i].centreColLabels = centerlab;
1751             alr[i].scaleColLabel = scaletofit;
1752             alr[i].showAllColLabels = showalllabs;
1753           }
1754         }
1755       }
1756     }
1757   }
1758
1759   void addProperties(AlignmentI al, StringTokenizer st)
1760   {
1761
1762     // So far we have only added groups to the annotationHash,
1763     // the idea is in the future properties can be added to
1764     // alignments, other annotations etc
1765     if (al.getGroups() == null)
1766     {
1767       return;
1768     }
1769
1770     String name = st.nextToken();
1771     SequenceGroup sg = null;
1772     for (SequenceGroup _sg : al.getGroups())
1773     {
1774       if ((sg = _sg).getName().equals(name))
1775       {
1776         break;
1777       }
1778       else
1779       {
1780         sg = null;
1781       }
1782     }
1783
1784     if (sg != null)
1785     {
1786       String keyValue, key, value;
1787       ColourSchemeI def = sg.cs;
1788       sg.cs = null;
1789       while (st.hasMoreTokens())
1790       {
1791         keyValue = st.nextToken();
1792         key = keyValue.substring(0, keyValue.indexOf("="));
1793         value = keyValue.substring(keyValue.indexOf("=") + 1);
1794
1795         if (key.equalsIgnoreCase("description"))
1796         {
1797           sg.setDescription(value);
1798         }
1799         else if (key.equalsIgnoreCase("colour"))
1800         {
1801           sg.cs = ColourSchemeProperty.getColour(al, value);
1802         }
1803         else if (key.equalsIgnoreCase("pidThreshold"))
1804         {
1805           sg.cs.setThreshold(Integer.parseInt(value), true);
1806
1807         }
1808         else if (key.equalsIgnoreCase("consThreshold"))
1809         {
1810           sg.cs.setConservationInc(Integer.parseInt(value));
1811           Conservation c = new Conservation("Group", 3,
1812                   sg.getSequences(null), sg.getStartRes(),
1813                   sg.getEndRes() + 1);
1814
1815           c.calculate();
1816           c.verdict(false, 25); // TODO: refer to conservation percent threshold
1817
1818           sg.cs.setConservation(c);
1819
1820         }
1821         else if (key.equalsIgnoreCase("outlineColour"))
1822         {
1823           sg.setOutlineColour(new UserColourScheme(value).findColour('A'));
1824         }
1825         else if (key.equalsIgnoreCase("displayBoxes"))
1826         {
1827           sg.setDisplayBoxes(Boolean.valueOf(value).booleanValue());
1828         }
1829         else if (key.equalsIgnoreCase("showUnconserved"))
1830         {
1831           sg.setShowNonconserved(Boolean.valueOf(value).booleanValue());
1832         }
1833         else if (key.equalsIgnoreCase("displayText"))
1834         {
1835           sg.setDisplayText(Boolean.valueOf(value).booleanValue());
1836         }
1837         else if (key.equalsIgnoreCase("colourText"))
1838         {
1839           sg.setColourText(Boolean.valueOf(value).booleanValue());
1840         }
1841         else if (key.equalsIgnoreCase("textCol1"))
1842         {
1843           sg.textColour = new UserColourScheme(value).findColour('A');
1844         }
1845         else if (key.equalsIgnoreCase("textCol2"))
1846         {
1847           sg.textColour2 = new UserColourScheme(value).findColour('A');
1848         }
1849         else if (key.equalsIgnoreCase("textColThreshold"))
1850         {
1851           sg.thresholdTextColour = Integer.parseInt(value);
1852         }
1853         else if (key.equalsIgnoreCase("idColour"))
1854         {
1855           // consider warning if colour doesn't resolve to a real colour
1856           sg.setIdColour((def = new UserColourScheme(value))
1857                   .findColour('A'));
1858         }
1859         else if (key.equalsIgnoreCase("hide"))
1860         {
1861           // see bug https://mantis.lifesci.dundee.ac.uk/view.php?id=25847
1862           sg.setHidereps(true);
1863         }
1864         else if (key.equalsIgnoreCase("hidecols"))
1865         {
1866           // see bug https://mantis.lifesci.dundee.ac.uk/view.php?id=25847
1867           sg.setHideCols(true);
1868         }
1869         sg.recalcConservation();
1870       }
1871       if (sg.cs == null)
1872       {
1873         sg.cs = def;
1874       }
1875     }
1876   }
1877
1878   void setBelowAlignment(AlignmentI al, StringTokenizer st)
1879   {
1880     String token;
1881     AlignmentAnnotation aa, ala[] = al.getAlignmentAnnotation();
1882     if (ala == null)
1883     {
1884       System.err
1885               .print("Warning - no annotation to set below for sequence associated annotation:");
1886     }
1887     while (st.hasMoreTokens())
1888     {
1889       token = st.nextToken();
1890       if (ala == null)
1891       {
1892         System.err.print(" " + token);
1893       }
1894       else
1895       {
1896         for (int i = 0; i < al.getAlignmentAnnotation().length; i++)
1897         {
1898           aa = al.getAlignmentAnnotation()[i];
1899           if (aa.sequenceRef == refSeq && aa.label.equals(token))
1900           {
1901             aa.belowAlignment = true;
1902           }
1903         }
1904       }
1905     }
1906     if (ala == null)
1907     {
1908       System.err.print("\n");
1909     }
1910   }
1911
1912   void addAlignmentDetails(AlignmentI al, StringTokenizer st)
1913   {
1914     String keyValue, key, value;
1915     while (st.hasMoreTokens())
1916     {
1917       keyValue = st.nextToken();
1918       key = keyValue.substring(0, keyValue.indexOf("="));
1919       value = keyValue.substring(keyValue.indexOf("=") + 1);
1920       al.setProperty(key, value);
1921     }
1922   }
1923
1924   /**
1925    * Write annotations as a CSV file of the form 'label, value, value, ...' for
1926    * each row.
1927    * 
1928    * @param annotations
1929    * @return CSV file as a string.
1930    */
1931   public String printCSVAnnotations(AlignmentAnnotation[] annotations)
1932   {
1933     if (annotations == null)
1934     {
1935       return "";
1936     }
1937     StringBuffer sp = new StringBuffer();
1938     for (int i = 0; i < annotations.length; i++)
1939     {
1940       String atos = annotations[i].toString();
1941       int p = 0;
1942       do
1943       {
1944         int cp = atos.indexOf("\n", p);
1945         sp.append(annotations[i].label);
1946         sp.append(",");
1947         if (cp > p)
1948         {
1949           sp.append(atos.substring(p, cp + 1));
1950         }
1951         else
1952         {
1953           sp.append(atos.substring(p));
1954           sp.append(newline);
1955         }
1956         p = cp + 1;
1957       } while (p > 0);
1958     }
1959     return sp.toString();
1960   }
1961
1962   public String printAnnotationsForView(AlignViewportI viewport)
1963   {
1964     return printAnnotations(viewport.isShowAnnotation() ? viewport
1965             .getAlignment().getAlignmentAnnotation() : null, viewport
1966             .getAlignment().getGroups(), viewport.getAlignment()
1967             .getProperties(), viewport.getColumnSelection(),
1968             viewport.getAlignment(), null);
1969   }
1970
1971   public String printAnnotationsForAlignment(AlignmentI al)
1972   {
1973     return printAnnotations(al.getAlignmentAnnotation(), al.getGroups(),
1974             al.getProperties(), null, al, null);
1975   }
1976 }