Explorar el Código

Issue #2: fixed coloring bug

cycle20 hace 2 años
padre
commit
680f84290f
Se han modificado 2 ficheros con 6 adiciones y 4 borrados
  1. 1 1
      src/apps/viewer/index.html
  2. 5 3
      src/extensions/tmdet/behavior.ts

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

@@ -55,7 +55,7 @@
             });
 
             // Set PDB Id here
-            var pdbId = '1afo';
+            var pdbId = '6xvf';
             function loadPdb() {
                 molstar.loadWithUNITMPMembraneRepresentation(viewer.plugin, {
                     structureUrl: `https://cs.litemol.org/${pdbId}/full`,

+ 5 - 3
src/extensions/tmdet/behavior.ts

@@ -220,9 +220,11 @@ async function createStructureRepresentation(plugin: PluginUIContext, pdbtmDescr
         }
 
         console.log(`REGIONS-${chain.chain_label}`, regionsBySite);
-        const regionUpdates = plugin.build();
-        createRegionRepresentation(plugin, chain.chain_label, regionsBySite[0], regionUpdates.to(structure));
-        regionUpdates.commit();
+        regionsBySite.map((region: PDBTMRegion) => {
+            const regionUpdates = plugin.build();
+            createRegionRepresentation(plugin, chain.chain_label, region, regionUpdates.to(structure));
+            regionUpdates.commit();
+        });
 
     });
 }