|
@@ -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();
|
|
|
+ });
|
|
|
|
|
|
});
|
|
|
}
|