JAL-629 stash some TFType and PAEFile info into a PDBEntry
authorBen Soares <b.soares@dundee.ac.uk>
Wed, 8 Mar 2023 13:31:23 +0000 (13:31 +0000)
committerBen Soares <b.soares@dundee.ac.uk>
Wed, 8 Mar 2023 13:31:23 +0000 (13:31 +0000)
src/jalview/gui/AssociatePdbFileWithSeq.java

index fd89c50..420e2cb 100644 (file)
@@ -100,6 +100,10 @@ public class AssociatePdbFileWithSeq
               .registerPDBEntry(entry);
       entry.setStructureFile(pdbfile);
     }
+    if (tft != null)
+      entry.setProperty("TFType", tft.name());
+    if (paeFilename != null)
+      entry.setProperty("PAEFile", paeFilename);
     return entry;
   }
 }