From: Ben Soares Date: Wed, 8 Mar 2023 13:31:23 +0000 (+0000) Subject: JAL-629 stash some TFType and PAEFile info into a PDBEntry X-Git-Tag: Release_2_11_3_0~14^2~180 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=692669611f7244598bd34df92e8a3e5cbaf9bd2e;p=jalview.git JAL-629 stash some TFType and PAEFile info into a PDBEntry --- diff --git a/src/jalview/gui/AssociatePdbFileWithSeq.java b/src/jalview/gui/AssociatePdbFileWithSeq.java index fd89c50..420e2cb 100644 --- a/src/jalview/gui/AssociatePdbFileWithSeq.java +++ b/src/jalview/gui/AssociatePdbFileWithSeq.java @@ -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; } }