javadoc, and unimplemented warning for group associated annotation (not shared to...
[jalview.git] / src / jalview / io / AnnotationFile.java
index 50b477c..00b7ead 100755 (executable)
@@ -72,10 +72,18 @@ public class AnnotationFile
       this.hiddenRepSeqs = hiddenRepSeqs;\r
     }\r
   }\r
-\r
+  /**\r
+   * Prepare an annotation file given a set of annotations, groups, alignment properties and views. \r
+   * @param annotations\r
+   * @param groups\r
+   * @param properties\r
+   * @param views\r
+   * @return annotation file\r
+   */\r
   public String printAnnotations(AlignmentAnnotation[] annotations,\r
           Vector groups, Hashtable properties, ViewDef[] views)\r
   {\r
+    // TODO: resolve views issue : annotationFile could contain visible region, or full data + hidden region specifications for a view.\r
     if (annotations != null)\r
     {\r
       boolean oneColour = true;\r
@@ -85,7 +93,7 @@ public class AnnotationFile
 \r
       StringBuffer colours = new StringBuffer();\r
       StringBuffer graphLine = new StringBuffer();\r
-\r
+      StringBuffer rowprops = new StringBuffer();\r
       Hashtable graphGroup = new Hashtable();\r
 \r
       java.awt.Color color;\r
@@ -141,7 +149,7 @@ public class AnnotationFile
         {\r
           text.append("NO_GRAPH\t");\r
           hasValues = false; // only secondary structure\r
-          hasLabels = false; // and annotation description string.\r
+          // hasLabels = false; // and annotation description string.\r
         }\r
         else\r
         {\r
@@ -224,7 +232,6 @@ public class AnnotationFile
             if (hasLabels)\r
             {\r
               // TODO: labels are emitted after values for bar graphs.\r
-              text.append(comma);\r
               if // empty labels are allowed, so\r
               (row.annotations[j].displayCharacter != null\r
                       && row.annotations[j].displayCharacter.length() > 0\r
@@ -276,7 +283,14 @@ public class AnnotationFile
           colours.append("COLOUR\t" + row.label + "\t"\r
                   + jalview.util.Format.getHexString(color) + "\n");\r
         }\r
-\r
+        if (row.scaleColLabel || row.showAllColLabels || row.centreColLabels)\r
+        {\r
+          rowprops.append("ROWPROPERTIES\t"+row.label);\r
+          rowprops.append("\tscaletofit="+row.scaleColLabel);\r
+          rowprops.append("\tshowalllabs="+row.showAllColLabels);\r
+          rowprops.append("\tcentrelabs="+row.centreColLabels);\r
+          rowprops.append("\n");\r
+        }\r
       }\r
 \r
       text.append("\n");\r
@@ -292,6 +306,7 @@ public class AnnotationFile
           text.append(en.nextElement() + "\n");\r
         }\r
       }\r
+      text.append(rowprops.toString());\r
     }\r
 \r
     if (groups != null)\r
@@ -498,7 +513,11 @@ public class AnnotationFile
           combineAnnotations(al, st);\r
           continue;\r
         }\r
-\r
+        else if (token.equalsIgnoreCase("ROWPROPERTIES"))\r
+        {\r
+          addRowProperties(al, st);\r
+          continue;\r
+        }\r
         else if (token.equalsIgnoreCase("GRAPHLINE"))\r
         {\r
           addLine(al, st);\r
@@ -615,7 +634,7 @@ public class AnnotationFile
             }\r
             else\r
             {\r
-              annotations[index++] = parseAnnotation(token);\r
+              annotations[index++] = parseAnnotation(token, graphStyle);\r
               emptyColumn = false;\r
             }\r
           }\r
@@ -670,8 +689,9 @@ public class AnnotationFile
     return true;\r
   }\r
 \r
-  Annotation parseAnnotation(String string)\r
+  Annotation parseAnnotation(String string, int graphStyle)\r
   {\r
+    boolean hasSymbols = (graphStyle == AlignmentAnnotation.NO_GRAPH); // don't do the glyph test if we don't want secondary structure\r
     String desc = null, displayChar = null;\r
     char ss = ' '; // secondaryStructure\r
     float value = 0;\r
@@ -686,31 +706,40 @@ public class AnnotationFile
       UserColourScheme ucs = new UserColourScheme();\r
 \r
       colour = ucs.getColourFromString(string.substring(i + 1, j));\r
-\r
+      if ( i>0 && string.charAt(i-1)==',')\r
+      {\r
+        // clip the preceding comma as well\r
+        i--;\r
+      }\r
       string = string.substring(0, i) + string.substring(j + 1);\r
     }\r
 \r
-    StringTokenizer st = new StringTokenizer(string, ",");\r
+    StringTokenizer st = new StringTokenizer(string, ",", true);\r
     String token;\r
+    boolean seenContent=false;\r
     while (st.hasMoreTokens())\r
     {\r
       token = st.nextToken().trim();\r
-      if (token.length() == 0)\r
+      if (token.equals(","))\r
       {\r
-        if (parsedValue && !dcset)\r
+        if (!seenContent && parsedValue && !dcset)\r
         {\r
           // allow the value below the bar/line to be empty\r
           dcset = true;\r
           displayChar = " ";\r
         }\r
+        seenContent = false;\r
         continue;\r
+      } else {\r
+        seenContent = true;\r
       }\r
 \r
       if (!parsedValue)\r
       {\r
         try\r
         {\r
-          displayChar = token;\r
+          displayChar = token; \r
+          // foo\r
           value = new Float(token).floatValue();\r
           parsedValue = true;\r
           continue;\r
@@ -719,7 +748,7 @@ public class AnnotationFile
         }\r
       }\r
 \r
-      if (token.equals("H") || token.equals("E"))\r
+      if (hasSymbols && (token.equals("H") || token.equals("E")))\r
       {\r
         // Either this character represents a helix or sheet\r
         // or an integer which can be displayed\r
@@ -735,10 +764,10 @@ public class AnnotationFile
       }\r
 \r
     }\r
-    if (!dcset && string.charAt(string.length() - 1) == ',')\r
-    {\r
-      displayChar = " "; // empty display char symbol.\r
-    }\r
+//    if (!dcset && string.charAt(string.length() - 1) == ',')\r
+//    {\r
+//      displayChar = " "; // empty display char symbol.\r
+//    }\r
     if (displayChar != null && displayChar.length() > 1 && desc != null\r
             && desc.length() == 1)\r
     {\r
@@ -933,6 +962,35 @@ public class AnnotationFile
     }\r
   }\r
 \r
+  void addRowProperties(AlignmentI al, StringTokenizer st)\r
+  {\r
+    String label = st.nextToken(),keyValue,key,value;\r
+    boolean scaletofit=false,centerlab=false,showalllabs=false;\r
+    while (st.hasMoreTokens()) {\r
+      keyValue=st.nextToken();\r
+      key = keyValue.substring(0, keyValue.indexOf("="));\r
+      value = keyValue.substring(keyValue.indexOf("=") + 1);\r
+      if (key.equalsIgnoreCase("scaletofit")) {\r
+        scaletofit = Boolean.valueOf(value).booleanValue();\r
+      }\r
+        if (key.equalsIgnoreCase("showalllabs")) {\r
+          showalllabs = Boolean.valueOf(value).booleanValue();\r
+        }\r
+        if (key.equalsIgnoreCase("centrelabs")) {\r
+          centerlab = Boolean.valueOf(value).booleanValue();\r
+    }\r
+        AlignmentAnnotation[] alr = al.getAlignmentAnnotation(); \r
+        for (int i = 0; i < alr.length; i++)\r
+        {\r
+          if (alr[i].label.equalsIgnoreCase(label))\r
+          {\r
+            alr[i].centreColLabels = centerlab;\r
+            alr[i].scaleColLabel = scaletofit;\r
+            alr[i].showAllColLabels = showalllabs;\r
+          }\r
+        }\r
+    }\r
+  }\r
   void addProperties(AlignmentI al, StringTokenizer st)\r
   {\r
 \r