Explorar el Código

Issue #645: mol* part of cif-mapped JSON generation

cycle20 hace 1 año
padre
commit
c28e8e5aeb
Se han modificado 2 ficheros con 2 adiciones y 3 borrados
  1. 0 1
      src/apps/tm-viewer/index.html
  2. 2 2
      src/extensions/tmdet/tmdet-color-theme.ts

+ 0 - 1
src/apps/tm-viewer/index.html

@@ -84,7 +84,6 @@
 
             function load(pdbId) {
                 tm_molstar.loadWithUNITMPMembraneRepresentation(viewer.plugin, {
-                    //structureUrl: `https://www.ebi.ac.uk/pdbe/entry-files/download/${pdbId}_updated.cif`,
                     structureUrl: `https://www.ebi.ac.uk/pdbe/entry-files/download/${pdbId}_updated.cif`,
                     //structureUrl: `https://www.ebi.ac.uk/pdbe/static/entry/download/${pdbId}-assembly-1.cif.gz`,
                     regionDescriptorUrl: `./tmdet-data/${pdbId}.json`,

+ 2 - 2
src/extensions/tmdet/tmdet-color-theme.ts

@@ -92,8 +92,8 @@ export function getChainAndResidueIds(location: Location) {
         const residueIdx = StructureElement.residueIndex(location);
         const chainIdx = StructureElement.Location.chainIndex(location);
 
-        residueId = atomicHierarchy.residues.auth_seq_id.value(residueIdx).toString();
-        chainId = atomicHierarchy.chains.auth_asym_id.value(chainIdx).toString();
+        residueId = atomicHierarchy.residues.label_seq_id.value(residueIdx).toString();
+        chainId = atomicHierarchy.chains.label_asym_id.value(chainIdx).toString();
     }
     return {
         chainId: chainId,