Explorar el Código

Issue #2: membrane transformation not applied on structure

cycle20 hace 2 años
padre
commit
450e0ab5fd
Se han modificado 2 ficheros con 9 adiciones y 9 borrados
  1. 2 2
      src/apps/viewer/index.html
  2. 7 7
      src/extensions/tmdet/transformation.ts

+ 2 - 2
src/apps/viewer/index.html

@@ -55,11 +55,11 @@
             });
 
             // Set PDB Id here
-            var pdbId = '6xvf';
+            var pdbId = '2atk';
             function loadPdb() {
                 molstar.loadWithUNITMPMembraneRepresentation(viewer.plugin, {
                     structureUrl: `https://cs.litemol.org/${pdbId}/full`,
-                    regionDescriptorUrl: `http://localhost:8080/build/data/${pdbId}.json`,
+                    regionDescriptorUrl: `http://localhost:8000/build/data/${pdbId}.json`,
                 });
             }
         </script>

+ 7 - 7
src/extensions/tmdet/transformation.ts

@@ -12,13 +12,13 @@ export async function applyTransformations(ctx: PluginUIContext, pdbtmDescriptor
     const annotations = pdbtmDescriptor.additional_entry_annotations;
     const transformation = transformationForStateTransform(annotations.membrane.transformation_matrix);
 
-    console.log("MEMBRANE TRNASFORMATION:\n\n", Mat4.makeTable(transformation));
-    const structure: StateObjectRef<PMS> = ctx.managers.structure.hierarchy.current.models[0].structures[0].cell;
-    const update: StateBuilder.To<any, any> = ctx.build().to(structure);
-    update.apply(StateTransforms.Model.TransformStructureConformation, {
-        "transform": { name: "matrix", params: { data: transformation, transpose: false } }
-    });
-    update.commit();
+    // console.log("MEMBRANE TRNASFORMATION:\n\n", Mat4.makeTable(transformation));
+    // const structure: StateObjectRef<PMS> = ctx.managers.structure.hierarchy.current.models[0].structures[0].cell;
+    // const update: StateBuilder.To<any, any> = ctx.build().to(structure);
+    // update.apply(StateTransforms.Model.TransformStructureConformation, {
+    //     "transform": { name: "matrix", params: { data: transformation, transpose: false } }
+    // });
+    // update.commit();
 
     console.log('BIOMX', annotations.biomatrix);
     if (annotations.biomatrix == undefined) {