JAL-629 Some refactoring to allow more flexible use of PAE files. Not working as...
[jalview.git] / src / jalview / gui / AssociatePdbFileWithSeq.java
index fe0aedf..fd89c50 100644 (file)
@@ -25,11 +25,10 @@ import jalview.datamodel.PDBEntry;
 import jalview.datamodel.SequenceI;
 import jalview.io.DataSourceType;
 import jalview.io.StructureFile;
+import jalview.structure.StructureImportSettings.TFType;
 import jalview.structure.StructureSelectionManager;
 import jalview.util.MessageManager;
 
-import javax.swing.JOptionPane;
-
 /**
  * GUI related routines for associating PDB files with sequences
  * 
@@ -49,11 +48,20 @@ public class AssociatePdbFileWithSeq
           SequenceI sequence, boolean prompt,
           StructureSelectionManagerProvider ssmp)
   {
+    return associatePdbWithSeq(choice, file, sequence, prompt, ssmp,
+            TFType.DEFAULT, null);
+  }
+
+  public PDBEntry associatePdbWithSeq(String choice, DataSourceType file,
+          SequenceI sequence, boolean prompt,
+          StructureSelectionManagerProvider ssmp, TFType tft,
+          String paeFilename)
+  {
     PDBEntry entry = new PDBEntry();
-    StructureFile pdbfile = null;
-    pdbfile = StructureSelectionManager.getStructureSelectionManager(ssmp)
+    StructureFile pdbfile = StructureSelectionManager
+            .getStructureSelectionManager(ssmp)
             .setMapping(false, new SequenceI[]
-            { sequence }, null, choice, file);
+            { sequence }, null, choice, file, tft, paeFilename);
     if (pdbfile == null)
     {
       // stacktrace already thrown so just return
@@ -90,6 +98,7 @@ public class AssociatePdbFileWithSeq
       sequence.getDatasetSequence().addPDBId(entry);
       StructureSelectionManager.getStructureSelectionManager(ssmp)
               .registerPDBEntry(entry);
+      entry.setStructureFile(pdbfile);
     }
     return entry;
   }