|
@@ -8,6 +8,7 @@ import { StateObjectRef, StateBuilder } from '../../mol-state';
|
|
|
import { Expression } from '../../mol-script/language/expression';
|
|
|
import { MembraneOrientation } from './prop';
|
|
|
import { TmDetColorThemeProvider } from './tmdet-color-theme';
|
|
|
+import { DebugUtil } from '../../apps/tm-viewer';
|
|
|
|
|
|
export async function applyTransformations(plugin: PluginUIContext, pdbtmDescriptor: PDBTMDescriptor) {
|
|
|
const annotations = pdbtmDescriptor.additional_entry_annotations;
|
|
@@ -29,6 +30,11 @@ export async function applyTransformations(plugin: PluginUIContext, pdbtmDescrip
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+ // WARNING: the components cannot be accessed here (created by chainTransformations in the above loop)
|
|
|
+ // Maybe due to some kind of synchronization behavior.
|
|
|
+ // plugin.runTask with "await" also cannot synchronize here.
|
|
|
+ //
|
|
|
+ // So this function call transforms only already existing components due to a side effect of another issue.
|
|
|
transformWholeModel(plugin, pdbtmDescriptor.additional_entry_annotations.membrane.transformation_matrix);
|
|
|
// await plugin.runTask(Task.create(`TMDET: Apply membrane transformation`, async () => {
|
|
|
// transformWholeModel(plugin, pdbtmDescriptor.additional_entry_annotations.membrane.transformation_matrix);
|
|
@@ -43,15 +49,15 @@ export function transformWholeModel(plugin: PluginUIContext, membraneMatrix: PDB
|
|
|
const membraneTransformation = transformationForStateTransform(membraneMatrix);
|
|
|
|
|
|
// transform each component
|
|
|
- console.log("STRUCTURES", getCurrentHierarchy(plugin).structures);
|
|
|
+ DebugUtil.log("STRUCTURES", getCurrentHierarchy(plugin).structures);
|
|
|
getCurrentHierarchy(plugin).structures[0].components.forEach(component => {
|
|
|
const structure: StateObjectRef<PMS> = component.cell;
|
|
|
const update: StateBuilder.To<any, any> = plugin.build().to(structure);
|
|
|
|
|
|
const label = component.cell.obj!.label.toUpperCase();
|
|
|
- console.log("memb.transform of ", label, component.cell.obj?.id);
|
|
|
- // console.log(`${label} component.cell.obj:`, component.cell.obj);
|
|
|
- // console.log(`${label} component:`, component);
|
|
|
+ DebugUtil.log("memb.transform of", label, component.cell.obj?.id);
|
|
|
+ DebugUtil.log(`${label} component.cell.obj:`, component.cell.obj);
|
|
|
+ // DebugUtil.log(`${label} component:`, component);
|
|
|
|
|
|
update
|
|
|
.apply(StateTransforms.Model.TransformStructureConformation, {
|