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.
21 package jalview.datamodel;
23 import java.util.ArrayList;
24 import java.util.Arrays;
25 import java.util.Collection;
26 import java.util.Collections;
27 import java.util.HashMap;
28 import java.util.Iterator;
29 import java.util.List;
30 import java.util.Locale;
32 import java.util.Map.Entry;
34 import jalview.analysis.Rna;
35 import jalview.analysis.SecStrConsensus.SimpleBP;
36 import jalview.analysis.WUSSParseException;
44 public class AlignmentAnnotation
46 private static final String ANNOTATION_ID_PREFIX = "ann";
49 * Identifers for different types of profile data
51 public static final int SEQUENCE_PROFILE = 0;
53 public static final int STRUCTURE_PROFILE = 1;
55 public static final int CDNA_PROFILE = 2;
57 private static long counter = 0;
60 * If true, this annotations is calculated every edit, eg consensus, quality
61 * or conservation graphs
63 public boolean autoCalculated = false;
66 * unique ID for this annotation, used to match up the same annotation row
67 * shown in multiple views and alignments
69 public String annotationId;
72 * the sequence this annotation is associated with (or null)
74 public SequenceI sequenceRef;
76 /** label shown in dropdown menus and in the annotation label area */
79 /** longer description text shown as a tooltip */
80 public String description;
82 /** Array of annotations placed in the current coordinate system */
83 public Annotation[] annotations;
85 public List<SimpleBP> bps = null;
88 * RNA secondary structure contact positions
90 public SequenceFeature[] _rnasecstr = null;
93 * position of annotation resulting in invalid WUSS parsing or -1. -2 means
94 * there was no RNA structure in this annotation
96 private long invalidrnastruc = -2;
98 private double bitScore;
100 private double eValue;
103 * Updates the _rnasecstr field Determines the positions that base pair and
104 * the positions of helices based on secondary structure from a Stockholm file
106 * @param rnaAnnotation
108 private void _updateRnaSecStr(CharSequence rnaAnnotation)
112 _rnasecstr = Rna.getHelixMap(rnaAnnotation);
113 invalidrnastruc = -1;
114 } catch (WUSSParseException px)
116 // DEBUG System.out.println(px);
117 invalidrnastruc = px.getProblemPos();
119 if (invalidrnastruc > -1)
124 if (_rnasecstr != null && _rnasecstr.length > 0)
126 // show all the RNA secondary structure annotation symbols.
128 showAllColLabels = true;
129 scaleColLabel = true;
132 // System.out.println("featuregroup " + _rnasecstr[0].getFeatureGroup());
136 private void _markRnaHelices()
139 // Figure out number of helices
140 // Length of rnasecstr is the number of pairs of positions that base pair
141 // with each other in the secondary structure
142 for (int x = 0; x < _rnasecstr.length; x++)
146 * System.out.println(this.annotation._rnasecstr[x] + " Begin" +
147 * this.annotation._rnasecstr[x].getBegin());
149 // System.out.println(this.annotation._rnasecstr[x].getFeatureGroup());
153 val = Integer.valueOf(_rnasecstr[x].getFeatureGroup());
158 } catch (NumberFormatException q)
163 annotations[_rnasecstr[x].getBegin()].value = val;
164 annotations[_rnasecstr[x].getEnd()].value = val;
166 // annotations[_rnasecstr[x].getBegin()].displayCharacter = "" + val;
167 // annotations[_rnasecstr[x].getEnd()].displayCharacter = "" + val;
173 * Get the RNA Secondary Structure SequenceFeature Array if present
175 public SequenceFeature[] getRnaSecondaryStructure()
177 return this._rnasecstr;
181 * Check the RNA Secondary Structure is equivalent to one in given
182 * AlignmentAnnotation param
184 public boolean rnaSecondaryStructureEquivalent(AlignmentAnnotation that)
186 return rnaSecondaryStructureEquivalent(that, true);
189 public boolean rnaSecondaryStructureEquivalent(AlignmentAnnotation that,
192 SequenceFeature[] thisSfArray = this.getRnaSecondaryStructure();
193 SequenceFeature[] thatSfArray = that.getRnaSecondaryStructure();
194 if (thisSfArray == null || thatSfArray == null)
196 return thisSfArray == null && thatSfArray == null;
198 if (thisSfArray.length != thatSfArray.length)
202 Arrays.sort(thisSfArray, new SFSortByEnd()); // probably already sorted
204 Arrays.sort(thatSfArray, new SFSortByEnd()); // probably already sorted
206 for (int i = 0; i < thisSfArray.length; i++)
208 SequenceFeature thisSf = thisSfArray[i];
209 SequenceFeature thatSf = thatSfArray[i];
212 if (thisSf.getType() == null || thatSf.getType() == null)
214 if (thisSf.getType() == null && thatSf.getType() == null)
223 if (!thisSf.getType().equals(thatSf.getType()))
228 if (!(thisSf.getBegin() == thatSf.getBegin()
229 && thisSf.getEnd() == thatSf.getEnd()))
239 * map of positions in the associated annotation
241 private Map<Integer, Annotation> sequenceMapping;
244 * lower range for quantitative data
246 public float graphMin;
249 * Upper range for quantitative data
251 public float graphMax;
254 * Score associated with label and description.
256 public double score = Double.NaN;
259 * flag indicating if annotation has a score.
261 public boolean hasScore = false;
263 public GraphLine threshold;
265 // Graphical hints and tips
267 /** Can this row be edited by the user ? */
268 public boolean editable = false;
270 /** Indicates if annotation has a graphical symbol track */
271 public boolean hasIcons; //
273 /** Indicates if annotation has a text character label */
274 public boolean hasText;
276 /** is the row visible */
277 public boolean visible = true;
279 public int graphGroup = -1;
281 /** Displayed height of row in pixels */
282 public int height = 0;
284 public int graph = 0;
286 public int graphHeight = 40;
288 public boolean padGaps = false;
290 public static final int NO_GRAPH = 0;
292 public static final int BAR_GRAPH = 1;
294 public static final int LINE_GRAPH = 2;
296 public boolean belowAlignment = true;
298 public SequenceGroup groupRef = null;
301 * display every column label, even if there is a row of identical labels
303 public boolean showAllColLabels = false;
306 * scale the column label to fit within the alignment column.
308 public boolean scaleColLabel = false;
311 * centre the column labels relative to the alignment column
313 public boolean centreColLabels = false;
315 private boolean isrna;
317 public static int getGraphValueFromString(String string)
319 if (string.equalsIgnoreCase("BAR_GRAPH"))
323 else if (string.equalsIgnoreCase("LINE_GRAPH"))
334 * Creates a new AlignmentAnnotation object.
337 * short label shown under sequence labels
339 * text displayed on mouseover
341 * set of positional annotation elements
343 public AlignmentAnnotation(String label, String description,
344 Annotation[] annotations)
350 this.description = description;
351 this.annotations = annotations;
353 validateRangeAndDisplay();
357 * Checks if annotation labels represent secondary structures
360 void areLabelsSecondaryStructure()
362 boolean nonSSLabel = false;
364 StringBuffer rnastring = new StringBuffer();
367 for (int i = 0; i < annotations.length; i++)
369 // DEBUG System.out.println(i + ": " + annotations[i]);
370 if (annotations[i] == null)
374 if (annotations[i].secondaryStructure == 'H'
375 || annotations[i].secondaryStructure == 'E')
377 // DEBUG System.out.println( "/H|E/ '" +
378 // annotations[i].secondaryStructure + "'");
382 // Check for RNA secondary structure
384 // DEBUG System.out.println( "/else/ '" +
385 // annotations[i].secondaryStructure + "'");
386 // TODO: 2.8.2 should this ss symbol validation check be a function in
387 // RNA/ResidueProperties ?
388 // allow for DSSP extended code:
389 // https://www.wikidoc.org/index.php/Secondary_structure#The_DSSP_code
390 // GHITEBS as well as C and X (for missing?)
391 if (annotations[i].secondaryStructure == '('
392 || annotations[i].secondaryStructure == '['
393 || annotations[i].secondaryStructure == '<'
394 || annotations[i].secondaryStructure == '{'
395 || annotations[i].secondaryStructure == 'A'
396 // || annotations[i].secondaryStructure == 'B'
397 // || annotations[i].secondaryStructure == 'C'
398 || annotations[i].secondaryStructure == 'D'
399 // || annotations[i].secondaryStructure == 'E' // ambiguous on
400 // its own -- already checked above
401 || annotations[i].secondaryStructure == 'F'
402 // || annotations[i].secondaryStructure == 'G'
403 // || annotations[i].secondaryStructure == 'H' // ambiguous on
404 // its own -- already checked above
405 // || annotations[i].secondaryStructure == 'I'
406 || annotations[i].secondaryStructure == 'J'
407 || annotations[i].secondaryStructure == 'K'
408 || annotations[i].secondaryStructure == 'L'
409 || annotations[i].secondaryStructure == 'M'
410 || annotations[i].secondaryStructure == 'N'
411 || annotations[i].secondaryStructure == 'O'
412 || annotations[i].secondaryStructure == 'P'
413 || annotations[i].secondaryStructure == 'Q'
414 || annotations[i].secondaryStructure == 'R'
415 // || annotations[i].secondaryStructure == 'S'
416 // || annotations[i].secondaryStructure == 'T'
417 || annotations[i].secondaryStructure == 'U'
418 || annotations[i].secondaryStructure == 'V'
419 || annotations[i].secondaryStructure == 'W'
420 // || annotations[i].secondaryStructure == 'X'
421 || annotations[i].secondaryStructure == 'Y'
422 || annotations[i].secondaryStructure == 'Z')
429 // System.out.println("displaychar " + annotations[i].displayCharacter);
431 if (annotations[i].displayCharacter == null
432 || annotations[i].displayCharacter.length() == 0)
434 rnastring.append('.');
437 if (annotations[i].displayCharacter.length() == 1)
439 firstChar = annotations[i].displayCharacter.charAt(0);
440 // check to see if it looks like a sequence or is secondary structure
442 if (annotations[i].secondaryStructure != ' ' && !hasIcons &&
443 // Uncomment to only catch case where
444 // displayCharacter==secondary
446 // to correctly redisplay SS annotation imported from Stockholm,
447 // exported to JalviewXML and read back in again.
449 // annotations[i].displayCharacter.charAt(0)==annotations[i].secondaryStructure
450 firstChar != ' ' && firstChar != '$' && firstChar != 0xCE
451 && firstChar != '(' && firstChar != '[' && firstChar != '<'
452 && firstChar != '{' && firstChar != 'A' && firstChar != 'B'
453 && firstChar != 'C' && firstChar != 'D' && firstChar != 'E'
454 && firstChar != 'F' && firstChar != 'G' && firstChar != 'H'
455 && firstChar != 'I' && firstChar != 'J' && firstChar != 'K'
456 && firstChar != 'L' && firstChar != 'M' && firstChar != 'N'
457 && firstChar != 'O' && firstChar != 'P' && firstChar != 'Q'
458 && firstChar != 'R' && firstChar != 'S' && firstChar != 'T'
459 && firstChar != 'U' && firstChar != 'V' && firstChar != 'W'
460 && firstChar != 'X' && firstChar != 'Y' && firstChar != 'Z'
462 && firstChar < jalview.schemes.ResidueProperties.aaIndex.length)
464 if (jalview.schemes.ResidueProperties.aaIndex[firstChar] < 23) // TODO:
477 rnastring.append(annotations[i].displayCharacter.charAt(1));
480 if (annotations[i].displayCharacter.length() > 0)
489 for (int j = 0; j < annotations.length; j++)
491 if (annotations[j] != null
492 && annotations[j].secondaryStructure != ' ')
494 annotations[j].displayCharacter = String
495 .valueOf(annotations[j].secondaryStructure);
496 annotations[j].secondaryStructure = ' ';
505 _updateRnaSecStr(new AnnotCharSequence());
511 * flyweight access to positions in the alignment annotation row for RNA
517 private class AnnotCharSequence implements CharSequence
523 public AnnotCharSequence()
525 this(0, annotations.length);
528 AnnotCharSequence(int start, int end)
535 public CharSequence subSequence(int start, int end)
537 return new AnnotCharSequence(offset + start, offset + end);
547 public char charAt(int index)
549 return ((index + offset < 0) || (index + offset) >= max
550 || annotations[index + offset] == null
551 || (annotations[index + offset].secondaryStructure <= ' ')
553 : annotations[index + offset].displayCharacter == null
555 + offset].displayCharacter
558 + offset].secondaryStructure
560 + offset].displayCharacter
565 public String toString()
567 char[] string = new char[max - offset];
568 int mx = annotations.length;
570 for (int i = offset; i < mx; i++)
572 string[i] = (annotations[i] == null
573 || (annotations[i].secondaryStructure <= 32))
575 : (annotations[i].displayCharacter == null
576 || annotations[i].displayCharacter
578 ? annotations[i].secondaryStructure
579 : annotations[i].displayCharacter
582 return new String(string);
586 private long _lastrnaannot = -1;
588 public String getRNAStruc()
592 String rnastruc = new AnnotCharSequence().toString();
593 if (_lastrnaannot != rnastruc.hashCode())
595 // ensure rna structure contacts are up to date
596 _lastrnaannot = rnastruc.hashCode();
597 _updateRnaSecStr(rnastruc);
605 * Creates a new AlignmentAnnotation object.
620 public AlignmentAnnotation(String label, String description,
621 Annotation[] annotations, float min, float max, int graphType)
624 // graphs are not editable
625 editable = graphType == 0;
628 this.description = description;
629 this.annotations = annotations;
633 validateRangeAndDisplay();
637 * checks graphMin and graphMax, secondary structure symbols, sets graphType
638 * appropriately, sets null labels to the empty string if appropriate.
640 public void validateRangeAndDisplay()
643 if (annotations == null)
645 visible = false; // try to prevent renderer from displaying.
646 invalidrnastruc = -1;
647 return; // this is a non-annotation row annotation - ie a sequence score.
650 int graphType = graph;
651 float min = graphMin;
652 float max = graphMax;
653 boolean drawValues = true;
658 for (int i = 0; i < annotations.length; i++)
660 if (annotations[i] == null)
665 if (drawValues && annotations[i].displayCharacter != null
666 && annotations[i].displayCharacter.length() > 1)
671 if (annotations[i].value > max)
673 max = annotations[i].value;
676 if (annotations[i].value < min)
678 min = annotations[i].value;
680 if (_linecolour == null && annotations[i].colour != null)
682 _linecolour = annotations[i].colour;
685 // ensure zero is origin for min/max ranges on only one side of zero
702 areLabelsSecondaryStructure();
704 if (!drawValues && graphType != NO_GRAPH)
706 for (int i = 0; i < annotations.length; i++)
708 if (annotations[i] != null)
710 annotations[i].displayCharacter = "";
717 * Copy constructor creates a new independent annotation row with the same
718 * associated sequenceRef
722 public AlignmentAnnotation(AlignmentAnnotation annotation)
725 updateAlignmentAnnotationFrom(annotation);
729 * copy attributes and annotation from an existing annotation (used by copy
730 * constructor). This method does not update the unique annotationId
734 public void updateAlignmentAnnotationFrom(AlignmentAnnotation annotation)
736 this.label = new String(annotation.label);
737 if (annotation.description != null)
739 this.description = new String(annotation.description);
741 this.graphMin = annotation.graphMin;
742 this.graphMax = annotation.graphMax;
743 this.graph = annotation.graph;
744 this.graphHeight = annotation.graphHeight;
745 this.graphGroup = annotation.graphGroup;
746 this.groupRef = annotation.groupRef;
747 this.editable = annotation.editable;
748 this.autoCalculated = annotation.autoCalculated;
749 this.hasIcons = annotation.hasIcons;
750 this.hasText = annotation.hasText;
751 this.height = annotation.height;
752 this.label = annotation.label;
753 this.padGaps = annotation.padGaps;
754 this.visible = annotation.visible;
755 this.centreColLabels = annotation.centreColLabels;
756 this.scaleColLabel = annotation.scaleColLabel;
757 this.showAllColLabels = annotation.showAllColLabels;
758 this.calcId = annotation.calcId;
759 this.bitScore = annotation.bitScore;
760 this.eValue = annotation.eValue;
762 if (annotation.properties != null)
764 properties = new HashMap<>();
765 for (Map.Entry<String, String> val : annotation.properties.entrySet())
767 properties.put(val.getKey(), val.getValue());
770 if (this.hasScore = annotation.hasScore)
772 this.score = annotation.score;
774 if (annotation.threshold != null)
776 threshold = new GraphLine(annotation.threshold);
778 Annotation[] ann = annotation.annotations;
779 if (annotation.annotations != null)
781 this.annotations = new Annotation[ann.length];
782 for (int i = 0; i < ann.length; i++)
786 annotations[i] = new Annotation(ann[i]);
787 if (_linecolour != null)
789 _linecolour = annotations[i].colour;
794 if (annotation.sequenceRef != null)
796 this.sequenceRef = annotation.sequenceRef;
797 if (annotation.sequenceMapping != null)
800 sequenceMapping = new HashMap<>();
801 Iterator<Integer> pos = annotation.sequenceMapping.keySet()
803 while (pos.hasNext())
805 // could optimise this!
807 Annotation a = annotation.sequenceMapping.get(p);
814 for (int i = 0; i < ann.length; i++)
818 sequenceMapping.put(p, annotations[i]);
826 this.sequenceMapping = null;
829 // TODO: check if we need to do this: JAL-952
830 // if (this.isrna=annotation.isrna)
832 // _rnasecstr=new SequenceFeature[annotation._rnasecstr];
834 validateRangeAndDisplay(); // construct hashcodes, etc.
838 * clip the annotation to the columns given by startRes and endRes (inclusive)
839 * and prune any existing sequenceMapping to just those columns.
844 public void restrict(int startRes, int endRes)
846 if (annotations == null)
855 if (startRes >= annotations.length)
857 startRes = annotations.length - 1;
859 if (endRes >= annotations.length)
861 endRes = annotations.length - 1;
863 if (annotations == null)
867 Annotation[] temp = new Annotation[endRes - startRes + 1];
868 if (startRes < annotations.length)
870 System.arraycopy(annotations, startRes, temp, 0,
871 endRes - startRes + 1);
873 if (sequenceRef != null)
875 // Clip the mapping, if it exists.
876 int spos = sequenceRef.findPosition(startRes);
877 int epos = sequenceRef.findPosition(endRes);
878 if (sequenceMapping != null)
880 Map<Integer, Annotation> newmapping = new HashMap<>();
881 Iterator<Integer> e = sequenceMapping.keySet().iterator();
884 Integer pos = e.next();
885 if (pos.intValue() >= spos && pos.intValue() <= epos)
887 newmapping.put(pos, sequenceMapping.get(pos));
890 sequenceMapping.clear();
891 sequenceMapping = newmapping;
898 * set the annotation row to be at least length Annotations
901 * minimum number of columns required in the annotation row
902 * @return false if the annotation row is greater than length
904 public boolean padAnnotation(int length)
906 if (annotations == null)
908 return true; // annotation row is correct - null == not visible and
911 if (annotations.length < length)
913 Annotation[] na = new Annotation[length];
914 System.arraycopy(annotations, 0, na, 0, annotations.length);
918 return annotations.length > length;
925 * @return DOCUMENT ME!
928 public String toString()
930 if (annotations == null)
934 StringBuilder buffer = new StringBuilder(256);
936 for (int i = 0; i < annotations.length; i++)
938 if (annotations[i] != null)
942 buffer.append(annotations[i].value);
946 buffer.append(annotations[i].secondaryStructure);
950 buffer.append(annotations[i].displayCharacter);
956 // TODO: remove disgusting hack for 'special' treatment of consensus line.
957 if (label.indexOf("Consensus") == 0)
961 for (int i = 0; i < annotations.length; i++)
963 if (annotations[i] != null)
965 buffer.append(annotations[i].description);
972 return buffer.toString();
975 public void setThreshold(GraphLine line)
980 public GraphLine getThreshold()
986 * Attach the annotation to seqRef, starting from startRes position. If
987 * alreadyMapped is true then the indices of the annotation[] array are
988 * sequence positions rather than alignment column positions.
992 * @param alreadyMapped
993 * - annotation are at aligned columns
995 public void createSequenceMapping(SequenceI seqRef, int startRes,
996 boolean alreadyMapped)
1003 sequenceRef = seqRef;
1004 if (annotations == null)
1008 sequenceMapping = new HashMap<>();
1012 for (int i = 0; i < annotations.length; i++)
1014 if (annotations[i] != null)
1018 seqPos = seqRef.findPosition(i);
1022 seqPos = i + startRes;
1025 sequenceMapping.put(Integer.valueOf(seqPos), annotations[i]);
1032 * When positional annotation and a sequence reference is present, clears and
1033 * resizes the annotations array to the current alignment width, and adds
1034 * annotation according to aligned positions of the sequenceRef given by
1037 public void adjustForAlignment()
1039 if (sequenceRef == null)
1044 if (annotations == null)
1049 int a = 0, aSize = sequenceRef.getLength();
1058 Annotation[] temp = new Annotation[aSize];
1060 if (sequenceMapping != null)
1062 for (a = sequenceRef.getStart(); a <= sequenceRef.getEnd(); a++)
1064 index = Integer.valueOf(a);
1065 Annotation annot = sequenceMapping.get(index);
1068 position = sequenceRef.findIndex(a) - 1;
1070 temp[position] = annot;
1078 * remove any null entries in annotation row and return the number of non-null
1079 * annotation elements.
1083 public int compactAnnotationArray()
1085 int i = 0, iSize = annotations.length;
1088 if (annotations[i] == null)
1092 System.arraycopy(annotations, i + 1, annotations, i,
1102 Annotation[] ann = annotations;
1103 annotations = new Annotation[i];
1104 System.arraycopy(ann, 0, annotations, 0, i);
1110 * Associate this annotation with the aligned residues of a particular
1111 * sequence. sequenceMapping will be updated in the following way: null
1112 * sequenceI - existing mapping will be discarded but annotations left in
1113 * mapped positions. valid sequenceI not equal to current sequenceRef: mapping
1114 * is discarded and rebuilt assuming 1:1 correspondence TODO: overload with
1115 * parameter to specify correspondence between current and new sequenceRef
1119 public void setSequenceRef(SequenceI sequenceI)
1121 if (sequenceI != null)
1123 if (sequenceRef != null)
1125 boolean rIsDs = sequenceRef.getDatasetSequence() == null,
1126 tIsDs = sequenceI.getDatasetSequence() == null;
1127 if (sequenceRef != sequenceI
1129 && sequenceRef != sequenceI.getDatasetSequence())
1131 && sequenceRef.getDatasetSequence() != sequenceI)
1132 && (!rIsDs && !tIsDs
1133 && sequenceRef.getDatasetSequence() != sequenceI
1134 .getDatasetSequence())
1135 && !sequenceRef.equals(sequenceI))
1137 // if sequenceRef isn't intersecting with sequenceI
1138 // throw away old mapping and reconstruct.
1140 if (sequenceMapping != null)
1142 sequenceMapping = null;
1143 // compactAnnotationArray();
1145 createSequenceMapping(sequenceI, 1, true);
1146 adjustForAlignment();
1150 // Mapping carried over
1151 sequenceRef = sequenceI;
1156 // No mapping exists
1157 createSequenceMapping(sequenceI, 1, true);
1158 adjustForAlignment();
1163 // throw away the mapping without compacting.
1164 sequenceMapping = null;
1172 public double getScore()
1181 public void setScore(double score)
1189 * @return true if annotation has an associated score
1191 public boolean hasScore()
1193 return hasScore || !Double.isNaN(score);
1197 * Score only annotation
1200 * @param description
1203 public AlignmentAnnotation(String label, String description, double score)
1205 this(label, description, null);
1210 * copy constructor with edit based on the hidden columns marked in colSel
1212 * @param alignmentAnnotation
1215 public AlignmentAnnotation(AlignmentAnnotation alignmentAnnotation,
1216 HiddenColumns hidden)
1218 this(alignmentAnnotation);
1219 if (annotations == null)
1223 makeVisibleAnnotation(hidden);
1227 public void setPadGaps(boolean padgaps, char gapchar)
1229 this.padGaps = padgaps;
1233 for (int i = 0; i < annotations.length; i++)
1235 if (annotations[i] == null)
1237 annotations[i] = new Annotation(String.valueOf(gapchar), null,
1240 else if (annotations[i].displayCharacter == null
1241 || annotations[i].displayCharacter.equals(" "))
1243 annotations[i].displayCharacter = String.valueOf(gapchar);
1250 * format description string for display
1253 * @return Get the annotation description string optionally prefixed by
1254 * associated sequence name (if any)
1256 public String getDescription(boolean seqname)
1258 if (seqname && this.sequenceRef != null)
1260 int i = description.toLowerCase(Locale.ROOT).indexOf("<html>");
1263 // move the html tag to before the sequence reference.
1264 return "<html>" + sequenceRef.getName() + " : "
1265 + description.substring(i + 6);
1267 return sequenceRef.getName() + " : " + description;
1272 public boolean isValidStruc()
1274 return invalidrnastruc == -1;
1277 public long getInvalidStrucPos()
1279 return invalidrnastruc;
1283 * machine readable ID string indicating what generated this annotation
1285 protected String calcId = "";
1288 * properties associated with the calcId
1290 protected Map<String, String> properties = new HashMap<>();
1293 * base colour for line graphs. If null, will be set automatically by
1294 * searching the alignment annotation
1296 public java.awt.Color _linecolour;
1298 public String getCalcId()
1303 public void setCalcId(String calcId)
1305 this.calcId = calcId;
1308 public boolean isRNA()
1314 * transfer annotation to the given sequence using the given mapping from the
1315 * current positions or an existing sequence mapping
1319 * map involving sq as To or From
1321 public void liftOver(SequenceI sq, Mapping sp2sq)
1323 if (sp2sq.getMappedWidth() != sp2sq.getWidth())
1325 // TODO: employ getWord/MappedWord to transfer annotation between cDNA and
1326 // Protein reference frames
1328 "liftOver currently not implemented for transfer of annotation between different types of seqeunce");
1330 boolean mapIsTo = (sp2sq != null)
1331 ? (sp2sq.getTo() == sq
1332 || sp2sq.getTo() == sq.getDatasetSequence())
1335 // TODO build a better annotation element map and get rid of annotations[]
1336 Map<Integer, Annotation> mapForsq = new HashMap<>();
1337 if (sequenceMapping != null)
1341 for (Entry<Integer, Annotation> ie : sequenceMapping.entrySet())
1343 Integer mpos = Integer
1344 .valueOf(mapIsTo ? sp2sq.getMappedPosition(ie.getKey())
1345 : sp2sq.getPosition(ie.getKey()));
1346 if (mpos >= sq.getStart() && mpos <= sq.getEnd())
1348 mapForsq.put(mpos, ie.getValue());
1351 sequenceMapping = mapForsq;
1353 adjustForAlignment();
1363 * like liftOver but more general.
1365 * Takes an array of int pairs that will be used to update the internal
1366 * sequenceMapping and so shuffle the annotated positions
1369 * - new sequence reference for the annotation row - if null,
1370 * sequenceRef is left unchanged
1372 * array of ints containing corresponding positions
1374 * - column for current coordinate system (-1 for index+1)
1376 * - column for destination coordinate system (-1 for index+1)
1378 * - offset added to index when referencing either coordinate system
1379 * @note no checks are made as to whether from and/or to are sensible
1380 * @note caller should add the remapped annotation to newref if they have not
1383 public void remap(SequenceI newref, HashMap<Integer, int[]> mapping,
1384 int from, int to, int idxoffset)
1386 if (mapping != null)
1388 Map<Integer, Annotation> old = sequenceMapping;
1389 Map<Integer, Annotation> remap = new HashMap<>();
1391 for (int mp[] : mapping.values())
1397 Annotation ann = null;
1400 ann = sequenceMapping.get(Integer.valueOf(idxoffset + index));
1404 if (mp != null && mp.length > from)
1406 ann = sequenceMapping.get(Integer.valueOf(mp[from]));
1413 remap.put(Integer.valueOf(idxoffset + index), ann);
1417 if (to > -1 && to < mp.length)
1419 remap.put(Integer.valueOf(mp[to]), ann);
1424 sequenceMapping = remap;
1428 sequenceRef = newref;
1430 adjustForAlignment();
1434 public String getProperty(String property)
1436 if (properties == null)
1440 return properties.get(property);
1443 public void setProperty(String property, String value)
1445 if (properties == null)
1447 properties = new HashMap<>();
1449 properties.put(property, value);
1452 public boolean hasProperties()
1454 return properties != null && properties.size() > 0;
1457 public Collection<String> getProperties()
1459 if (properties == null)
1461 return Collections.emptyList();
1463 return properties.keySet();
1467 * Returns the Annotation for the given sequence position (base 1) if any,
1473 public Annotation getAnnotationForPosition(int position)
1475 return sequenceMapping == null ? null : sequenceMapping.get(position);
1480 * Set the id to "ann" followed by a counter that increments so as to be
1481 * unique for the lifetime of the JVM
1483 protected final void setAnnotationId()
1485 this.annotationId = ANNOTATION_ID_PREFIX + Long.toString(nextId());
1489 * Returns the match for the last unmatched opening RNA helix pair symbol
1490 * preceding the given column, or '(' if nothing found to match.
1495 public String getDefaultRnaHelixSymbol(int column)
1497 String result = "(";
1498 if (annotations == null)
1504 * for each preceding column, if it contains an open bracket,
1505 * count whether it is still unmatched at column, if so return its pair
1506 * (likely faster than the fancy alternative using stacks)
1508 for (int col = column - 1; col >= 0; col--)
1510 Annotation annotation = annotations[col];
1511 if (annotation == null)
1515 String displayed = annotation.displayCharacter;
1516 if (displayed == null || displayed.length() != 1)
1520 char symbol = displayed.charAt(0);
1521 if (!Rna.isOpeningParenthesis(symbol))
1527 * found an opening bracket symbol
1528 * count (closing-opening) symbols of this type that follow it,
1529 * up to and excluding the target column; if the count is less
1530 * than 1, the opening bracket is unmatched, so return its match
1532 String closer = String
1533 .valueOf(Rna.getMatchingClosingParenthesis(symbol));
1534 String opener = String.valueOf(symbol);
1536 for (int j = col + 1; j < column; j++)
1538 if (annotations[j] != null)
1540 String s = annotations[j].displayCharacter;
1541 if (closer.equals(s))
1545 else if (opener.equals(s))
1559 protected static synchronized long nextId()
1566 * @return true for rows that have a range of values in their annotation set
1568 public boolean isQuantitative()
1570 return graphMin < graphMax;
1574 * delete any columns in alignmentAnnotation that are hidden (including
1575 * sequence associated annotation).
1577 * @param hiddenColumns
1578 * the set of hidden columns
1580 public void makeVisibleAnnotation(HiddenColumns hiddenColumns)
1582 if (annotations != null)
1584 makeVisibleAnnotation(0, annotations.length, hiddenColumns);
1589 * delete any columns in alignmentAnnotation that are hidden (including
1590 * sequence associated annotation).
1593 * remove any annotation to the right of this column
1595 * remove any annotation to the left of this column
1596 * @param hiddenColumns
1597 * the set of hidden columns
1599 public void makeVisibleAnnotation(int start, int end,
1600 HiddenColumns hiddenColumns)
1602 if (annotations != null)
1604 if (hiddenColumns.hasHiddenColumns())
1606 removeHiddenAnnotation(start, end, hiddenColumns);
1610 restrict(start, end);
1616 * The actual implementation of deleting hidden annotation columns
1619 * remove any annotation to the right of this column
1621 * remove any annotation to the left of this column
1622 * @param hiddenColumns
1623 * the set of hidden columns
1625 private void removeHiddenAnnotation(int start, int end,
1626 HiddenColumns hiddenColumns)
1628 // mangle the alignmentAnnotation annotation array
1629 ArrayList<Annotation[]> annels = new ArrayList<>();
1630 Annotation[] els = null;
1634 Iterator<int[]> blocks = hiddenColumns.getVisContigsIterator(start,
1638 int annotationLength;
1639 while (blocks.hasNext())
1641 int[] block = blocks.next();
1642 annotationLength = block[1] - block[0] + 1;
1644 if (blocks.hasNext())
1646 // copy just the visible segment of the annotation row
1647 copylength = annotationLength;
1651 if (annotationLength + block[0] <= annotations.length)
1653 // copy just the visible segment of the annotation row
1654 copylength = annotationLength;
1658 // copy to the end of the annotation row
1659 copylength = annotations.length - block[0];
1663 els = new Annotation[annotationLength];
1665 System.arraycopy(annotations, block[0], els, 0, copylength);
1666 w += annotationLength;
1671 annotations = new Annotation[w];
1674 for (Annotation[] chnk : annels)
1676 System.arraycopy(chnk, 0, annotations, w, chnk.length);
1682 public static Iterable<AlignmentAnnotation> findAnnotations(
1683 Iterable<AlignmentAnnotation> list, SequenceI seq, String calcId,
1686 ArrayList<AlignmentAnnotation> aa = new ArrayList<>();
1687 for (AlignmentAnnotation ann : list)
1689 if ((calcId == null || (ann.getCalcId() != null
1690 && ann.getCalcId().equals(calcId)))
1691 && (seq == null || (ann.sequenceRef != null
1692 && ann.sequenceRef == seq))
1694 || (ann.label != null && ann.label.equals(label))))
1703 * Answer true if any annotation matches the calcId passed in (if not null).
1706 * annotation to search
1710 public static boolean hasAnnotation(List<AlignmentAnnotation> list,
1714 if (calcId != null && !"".equals(calcId))
1716 for (AlignmentAnnotation a : list)
1718 if (a.getCalcId() == calcId)
1727 public static Iterable<AlignmentAnnotation> findAnnotation(
1728 List<AlignmentAnnotation> list, String calcId)
1730 List<AlignmentAnnotation> aa = new ArrayList<>();
1735 for (AlignmentAnnotation a : list)
1738 if (a.getCalcId() == calcId || (a.getCalcId() != null
1739 && calcId != null && a.getCalcId().equals(calcId)))
1747 public double getBitScore()
1752 public void setBitScore(double bitScore)
1754 this.bitScore = bitScore;
1757 public double getEValue()
1762 public void setEValue(double eValue)
1764 this.eValue = eValue;
1767 public static AlignmentAnnotation findFirstAnnotation(
1768 Iterable<AlignmentAnnotation> alignmentAnnotation, String name,
1769 String calcId, boolean autoCalc, SequenceI seqRef,
1770 SequenceGroup groupRef)
1773 for (AlignmentAnnotation annot : alignmentAnnotation)
1775 if (annot.autoCalculated == autoCalc && (name.equals(annot.label))
1776 && (calcId == null || annot.getCalcId().equals(calcId))
1777 && annot.sequenceRef == seqRef && annot.groupRef == groupRef)