X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FAlignmentAnnotation.java;h=40d2b7ee5056cebc8f8f5d12ffc2962c80ec988f;hb=30bc1314d4206cafea412dcd9decdea7e318481f;hp=f43529d310f93eb5c4f61e083107fb2b31ee99e4;hpb=ff37fec79b0304a4a9a67bbb512c7d2b120f6f34;p=jalview.git diff --git a/src/jalview/datamodel/AlignmentAnnotation.java b/src/jalview/datamodel/AlignmentAnnotation.java index f43529d..40d2b7e 100755 --- a/src/jalview/datamodel/AlignmentAnnotation.java +++ b/src/jalview/datamodel/AlignmentAnnotation.java @@ -20,7 +20,6 @@ package jalview.datamodel; import java.util.Enumeration; import java.util.Hashtable; -import java.util.Vector; /** * DOCUMENT ME! @@ -55,6 +54,15 @@ public class AlignmentAnnotation /** DOCUMENT ME!! */ public float graphMax; + /** + * Score associated with label and description. + */ + public double score= Double.NaN; + /** + * flag indicating if annotation has a score. + */ + public boolean hasScore=false; + public GraphLine threshold; // Graphical hints and tips @@ -80,12 +88,17 @@ public class AlignmentAnnotation public int graphHeight = 40; + public boolean padGaps = false; + public static final int NO_GRAPH = 0; public static final int BAR_GRAPH = 1; public static final int LINE_GRAPH = 2; + public boolean belowAlignment = true; + + public static int getGraphValueFromString(String string) { if (string.equalsIgnoreCase("BAR_GRAPH")) @@ -105,9 +118,9 @@ public class AlignmentAnnotation /** * Creates a new AlignmentAnnotation object. * - * @param label DOCUMENT ME! - * @param description DOCUMENT ME! - * @param annotations DOCUMENT ME! + * @param label short label shown under sequence labels + * @param description text displayed on mouseover + * @param annotations set of positional annotation elements */ public AlignmentAnnotation(String label, String description, Annotation[] annotations) @@ -118,35 +131,47 @@ public class AlignmentAnnotation this.description = description; this.annotations = annotations; - areLabelsSecondaryStructure(); + validateRangeAndDisplay(); } void areLabelsSecondaryStructure() { boolean nonSSLabel = false; + char firstChar=0; for (int i = 0; i < annotations.length; i++) { if (annotations[i] == null) { continue; } - if (annotations[i].secondaryStructure == 'H' || annotations[i].secondaryStructure == 'E') { - hasIcons = true; + hasIcons = true; } - if (annotations[i].displayCharacter.length() == 1 - && !annotations[i].displayCharacter.equals("H") - && !annotations[i].displayCharacter.equals("E") - && !annotations[i].displayCharacter.equals("-") - && !annotations[i].displayCharacter.equals(".")) + if(annotations[i].displayCharacter==null) { - if (jalview.schemes.ResidueProperties.aaIndex - [annotations[i].displayCharacter.charAt(0)] < 23) + continue; + } + if (annotations[i].displayCharacter.length() == 1) + { + firstChar = annotations[i].displayCharacter.charAt(0); + // check to see if it looks like a sequence or is secondary structure labelling. + if ( + // Uncomment to only catch case where displayCharacter==secondary Structure + // to correctly redisplay SS annotation imported from Stockholm, exported to JalviewXML and read back in again. + // && annotations[i].displayCharacter.charAt(0)==annotations[i].secondaryStructure + firstChar!='H' + && firstChar!='E' + && firstChar!='-' + && firstChar!='-' && firstChar 1) + if (drawValues + && annotations[i].displayCharacter!=null + && annotations[i].displayCharacter.length() > 1) { drawValues = false; } @@ -277,29 +310,44 @@ public class AlignmentAnnotation this.hasText = annotation.hasText; this.height = annotation.height; this.label = annotation.label; + this.padGaps = annotation.padGaps; + this.visible = annotation.visible; + if (this.hasScore = annotation.hasScore) + { + this.score = annotation.score; + } if (threshold!=null) { threshold = new GraphLine(annotation.threshold); } if (annotation.annotations!=null) { - Vector anvec = new Vector(); Annotation[] ann = annotation.annotations; this.annotations = new Annotation[ann.length]; for (int i=0; i=annotations.length) + startRes = annotations.length-1; + if (endRes>=annotations.length) + endRes = annotations.length-1; + if (annotations==null) + return; + Annotation[] temp = new Annotation[endRes-startRes+1]; + if (startRes=spos && pos.intValue()<=epos) + { + newmapping.put(pos, sequenceMapping.get(pos)); + } + } + sequenceMapping.clear(); + sequenceMapping = newmapping; + } + } + annotations=temp; + } + /** + * set the annotation row to be at least length Annotations + * @param length minimum number of columns required in the annotation row + * @return false if the annotation row is greater than length + */ + public boolean padAnnotation(int length) { + if (annotations==null) + { + return true; // annotation row is correct - null == not visible and undefined length + } + if (annotations.lengthlength; + + } + + /** * DOCUMENT ME! * * @return DOCUMENT ME! @@ -381,10 +498,13 @@ public class AlignmentAnnotation { return; } - + sequenceRef=seqRef; + if (annotations==null) + { + return; + } sequenceMapping = new java.util.Hashtable(); - sequenceRef = seqRef; int seqPos; for (int i = 0; i < annotations.length; i++) @@ -411,6 +531,11 @@ public class AlignmentAnnotation if (sequenceRef==null) return; + if (annotations==null) + { + return; + } + int a = 0, aSize = sequenceRef.getLength(); if (aSize == 0) @@ -441,18 +566,23 @@ public class AlignmentAnnotation * number of non-null annotation elements. * @return */ - private int compactAnnotationArray() { - int j=0; - for (int i=0;i