X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fdatamodel%2FAlignmentAnnotation.java;h=de98c642b87aa98df2f0b88b1bf8b7b99b9ec0b7;hb=6c36212c1e16557e6afb1b4dba9c28864d52ad4a;hp=b6e48dc9f54baee1221c06c524455c6e69c9adb9;hpb=9af777baf4329f2d4203316f3ba75c8e0027cdb0;p=jalview.git diff --git a/src/jalview/datamodel/AlignmentAnnotation.java b/src/jalview/datamodel/AlignmentAnnotation.java index b6e48dc..de98c64 100755 --- a/src/jalview/datamodel/AlignmentAnnotation.java +++ b/src/jalview/datamodel/AlignmentAnnotation.java @@ -34,6 +34,7 @@ import java.util.Map.Entry; import jalview.analysis.Rna; import jalview.analysis.SecStrConsensus.SimpleBP; import jalview.analysis.WUSSParseException; +import jalview.structure.StructureImportSettings; /** * DOCUMENT ME! @@ -43,6 +44,7 @@ import jalview.analysis.WUSSParseException; */ public class AlignmentAnnotation { + private static final String ANNOTATION_ID_PREFIX = "ann"; /* @@ -96,6 +98,21 @@ public class AlignmentAnnotation private long invalidrnastruc = -2; /** + * the type of temperature factor plot (if it is one) + */ + private StructureImportSettings.TFType tfType = StructureImportSettings.TFType.DEFAULT; + + public void setTFType(StructureImportSettings.TFType t) + { + tfType = t; + } + + public StructureImportSettings.TFType getTFType() + { + return tfType; + } + + /** * Updates the _rnasecstr field Determines the positions that base pair and * the positions of helices based on secondary structure from a Stockholm file * @@ -289,7 +306,12 @@ public class AlignmentAnnotation public static final int LINE_GRAPH = 2; - public static final int CUSTOMRENDERER = 4; + public static final int CONTACT_MAP = 4; + + /** + * property that when set to non-empty string disables display of column groups defined on the contact matrix + */ + public static final String CONTACT_MAP_NOGROUPS = "CMNOGRPS"; public boolean belowAlignment = true; @@ -1728,5 +1750,23 @@ public class AlignmentAnnotation } return aa; } + + /** + * convenience method to check for the 'CONTACT_MAP_NOGROUPS' property for this alignment annotation row + * @return true if no CONTACT_MAP_NOGROUPS property is found, or it is set to "" + */ + public boolean isShowGroupsForContactMatrix() + { + return getProperty(AlignmentAnnotation.CONTACT_MAP_NOGROUPS)==null || "".equals(getProperty(AlignmentAnnotation.CONTACT_MAP_NOGROUPS)); + } + /** + * set the 'CONTACT_MAP_NOGROUPS' property for this alignment annotation row + * @see isShowGroupsForContactMatrix + */ + public void setShowGroupsForContactMatrix(boolean showGroups) + { + setProperty(AlignmentAnnotation.CONTACT_MAP_NOGROUPS, showGroups ? "" : "nogroups"); + } + }