JAL-3855 JAL-3829 don’t need to make up alphafold model retrieval URL when we’ve...
[jalview.git] / src / jalview / gui / JalviewChimeraXBindingModel.java
index c685f0f..cfd44c7 100644 (file)
@@ -10,12 +10,12 @@ import jalview.datamodel.SequenceI;
 import jalview.ext.rbvi.chimera.ChimeraXCommands;
 import jalview.gui.StructureViewer.ViewerType;
 import jalview.io.DataSourceType;
+import jalview.structure.AtomSpec;
 import jalview.structure.StructureCommand;
 import jalview.structure.StructureSelectionManager;
 
 public class JalviewChimeraXBindingModel extends JalviewChimeraBindingModel
 {
-
   public static final String CHIMERAX_SESSION_EXTENSION = ".cxs";
 
   public JalviewChimeraXBindingModel(ChimeraViewFrame chimeraViewFrame,
@@ -42,7 +42,7 @@ public class JalviewChimeraXBindingModel extends JalviewChimeraBindingModel
     int modelNumber = chimeraMaps.size() + 1;
     String command = "setattr #" + modelNumber + " models name "
             + pe.getId();
-    executeCommand(new StructureCommand(command), false);
+   executeCommand(new StructureCommand(command), false);
     modelsToMap.add(new ChimeraModel(pe.getId(), ModelType.PDB_MODEL,
             modelNumber, 0));
   }
@@ -88,4 +88,15 @@ public class JalviewChimeraXBindingModel extends JalviewChimeraBindingModel
     return String.valueOf(pdbfnum + 1);
   }
 
+  /**
+   * Returns a model of the structure positions described by the ChimeraX format atomspec
+   * @param atomSpec
+   * @return
+   */
+  @Override
+  protected AtomSpec parseAtomSpec(String atomSpec)
+  {
+    return AtomSpec.fromChimeraXAtomspec(atomSpec);
+  }
+
 }