JAL-629 stash some TFType and PAEFile info into a PDBEntry
[jalview.git] / 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;
   }
 }