X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAssociatePdbFileWithSeq.java;h=e2637a95cf603d9eccf2e0377beb1bc6d36fa31e;hb=37ccad699d3f506184538702799df55866211528;hp=f13bb357004fccc69f967e664fe521e282d0fd10;hpb=ab43013b7e357b84b4abade0dba949668dfb2a0e;p=jalview.git diff --git a/src/jalview/gui/AssociatePdbFileWithSeq.java b/src/jalview/gui/AssociatePdbFileWithSeq.java index f13bb35..e2637a9 100644 --- a/src/jalview/gui/AssociatePdbFileWithSeq.java +++ b/src/jalview/gui/AssociatePdbFileWithSeq.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -23,6 +23,7 @@ package jalview.gui; import jalview.api.StructureSelectionManagerProvider; import jalview.datamodel.PDBEntry; import jalview.datamodel.SequenceI; +import jalview.io.StructureFile; import jalview.structure.StructureSelectionManager; import jalview.util.MessageManager; @@ -48,16 +49,16 @@ public class AssociatePdbFileWithSeq StructureSelectionManagerProvider ssmp) { PDBEntry entry = new PDBEntry(); - MCview.PDBfile pdbfile = null; + StructureFile pdbfile = null; pdbfile = StructureSelectionManager.getStructureSelectionManager(ssmp) - .setMapping(false, new SequenceI[] - { sequence }, null, choice, protocol); + .setMapping(false, new SequenceI[] { sequence }, null, choice, + protocol); if (pdbfile == null) { // stacktrace already thrown so just return return null; } - if (pdbfile.id == null) + if (pdbfile.getId() == null) { String reply = null; @@ -78,8 +79,9 @@ public class AssociatePdbFileWithSeq } else { - entry.setId(pdbfile.id); + entry.setId(pdbfile.getId()); } + entry.setType(PDBEntry.Type.FILE); if (pdbfile != null) {