JAL-2136 JAL-2137 Improved STRUCTMODEL annotation syntax to reinstated fasta file...
[jalview.git] / src / jalview / io / SequenceAnnotationReport.java
index 6c8f40f..a855aa2 100644 (file)
@@ -22,6 +22,7 @@ package jalview.io;
 
 import jalview.datamodel.DBRefEntry;
 import jalview.datamodel.DBRefSource;
+import jalview.datamodel.PDBEntry;
 import jalview.datamodel.SequenceFeature;
 import jalview.datamodel.SequenceI;
 import jalview.io.gff.GffConstants;
@@ -449,6 +450,14 @@ public class SequenceAnnotationReport
       }
     }
     sb.append("</i>");
+
+    for (PDBEntry pdb : ds.getAllPDBEntries())
+    {
+      if (pdb != null && pdb.getProperty("PHYRE2_MODEL_INFO") != null)
+      {
+        sb.append(pdb.getProperty("PHYRE2_MODEL_INFO"));
+      }
+    }
     return maxWidth;
   }