|
@@ -12,72 +12,99 @@ import { TmDetColorThemeProvider } from './tmdet-color-theme';
|
|
|
export async function applyTransformations(plugin: PluginUIContext, pdbtmDescriptor: PDBTMDescriptor) {
|
|
|
const annotations = pdbtmDescriptor.additional_entry_annotations;
|
|
|
|
|
|
- console.log('BIOMX', annotations.biomatrix);
|
|
|
+ const membraneTransformation = transformationForStateTransform(pdbtmDescriptor.additional_entry_annotations.membrane.transformation_matrix);
|
|
|
+
|
|
|
if (annotations.biomatrix) {
|
|
|
annotations.biomatrix.matrix_list.forEach(function(mx) {
|
|
|
- mx.apply_to_chain_list.forEach(function(chainPair) {
|
|
|
+ mx.apply_to_chain_list.forEach(async function(chainPair) {
|
|
|
let id = chainPair.chain_id;
|
|
|
- chainTransformation(plugin, pdbtmDescriptor, mx.transformation_matrix, id);
|
|
|
+ let newId = chainPair.new_chain_id;
|
|
|
+ const mtx = transformationForStateTransform(mx.transformation_matrix);
|
|
|
+ const composedTransformation = Mat4.mul(Mat4(), membraneTransformation, mtx);
|
|
|
+ chainTransformation(plugin, composedTransformation, id, newId);
|
|
|
+ // await plugin.runTask(Task.create(`TMDET: Transform '${id}' into '${newId}'`, async () => {
|
|
|
+ // chainTransformation(plugin, mx.transformation_matrix, id, newId);
|
|
|
+ // }));
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- // membrane transformation
|
|
|
- const membraneTransformation = transformationForStateTransform(pdbtmDescriptor.additional_entry_annotations.membrane.transformation_matrix);
|
|
|
- const structure: StateObjectRef<PMS> = plugin.managers.structure.hierarchy.current.models[0].structures[0].cell;
|
|
|
- const update: StateBuilder.To<any, any> = plugin.build().to(structure);
|
|
|
+ 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);
|
|
|
+ // }));
|
|
|
|
|
|
- update
|
|
|
- .apply(StateTransforms.Model.TransformStructureConformation, {
|
|
|
- "transform": { name: "matrix", params: { data: membraneTransformation, transpose: false } }
|
|
|
- })
|
|
|
- .apply(
|
|
|
- StateTransforms.Representation.StructureRepresentation3D,
|
|
|
- createStructureRepresentationParams(plugin, structure.obj?.data, {
|
|
|
- type: 'cartoon',
|
|
|
- color: TmDetColorThemeProvider.name as any, colorParams: { pdbtmDescriptor }
|
|
|
- })
|
|
|
- );
|
|
|
- update.commit();
|
|
|
+}
|
|
|
|
|
|
+export function transformWholeModel(plugin: PluginUIContext, membraneMatrix: PDBTMTransformationMatrix) {
|
|
|
+ //
|
|
|
+ // membrane transformation
|
|
|
+ //
|
|
|
+ const membraneTransformation = transformationForStateTransform(membraneMatrix);
|
|
|
+
|
|
|
+ // transform each component
|
|
|
+ console.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);
|
|
|
+
|
|
|
+ update
|
|
|
+ .apply(StateTransforms.Model.TransformStructureConformation, {
|
|
|
+ "transform": { name: "matrix", params: { data: membraneTransformation, transpose: false } }
|
|
|
+ })
|
|
|
+ .apply(
|
|
|
+ StateTransforms.Representation.StructureRepresentation3D,
|
|
|
+ createStructureRepresentationParams(plugin, structure.obj?.data, {
|
|
|
+ type: 'cartoon',
|
|
|
+ color: TmDetColorThemeProvider.name as any //, colorParams: { pdbtmDescriptor }
|
|
|
+ })
|
|
|
+ );
|
|
|
+ update.commit();
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Sets color of specified chain to red.
|
|
|
+ * Perform transformation on a chain.
|
|
|
*
|
|
|
* @param plugin UI context
|
|
|
- * @param pdbtmDescriptor TM-specific information
|
|
|
* @param transformationMatrix 4x4 matrix describes transformation and translation
|
|
|
* @param chainId Id of chain to be selected for transformation
|
|
|
*/
|
|
|
- export function chainTransformation(plugin: PluginUIContext, pdbtmDescriptor: PDBTMDescriptor, transformationMatrix: PDBTMTransformationMatrix, chainId: string): void {
|
|
|
+export function chainTransformation(plugin: PluginUIContext, transformationMatrix: Mat4, chainId: string, newId: string): void {
|
|
|
const query: Expression = getChainExpression(chainId);
|
|
|
|
|
|
- const transformation = transformationForStateTransform(transformationMatrix);
|
|
|
+// const transformation = transformationForStateTransform(transformationMatrix);
|
|
|
+ const transformation = transformationMatrix;
|
|
|
const structure: StateObjectRef<PMS> = plugin.managers.structure.hierarchy.current.models[0].structures[0].cell;
|
|
|
const update: StateBuilder.To<any, any> = plugin.build().to(structure);
|
|
|
|
|
|
update
|
|
|
.apply(
|
|
|
StateTransforms.Model.StructureSelectionFromExpression,
|
|
|
- { label: chainId, expression: query }
|
|
|
+ { label: newId, expression: query }
|
|
|
)
|
|
|
.apply(StateTransforms.Model.TransformStructureConformation, {
|
|
|
"transform": { name: "matrix", params: { data: transformation, transpose: false } }
|
|
|
})
|
|
|
.apply(
|
|
|
StateTransforms.Representation.StructureRepresentation3D,
|
|
|
- createStructureRepresentationParams(plugin, update.selector.data, {
|
|
|
+ createStructureRepresentationParams(plugin, structure.obj?.data, {
|
|
|
type: 'cartoon',
|
|
|
- color: TmDetColorThemeProvider.name as any, colorParams: { pdbtmDescriptor }
|
|
|
+ color: TmDetColorThemeProvider.name as any //, colorParams: { pdbtmDescriptor }
|
|
|
})
|
|
|
);
|
|
|
update.commit();
|
|
|
+ console.log(`${chainId}->${newId} DONE`);
|
|
|
}
|
|
|
|
|
|
-function vadd(a: Vec3, b: Vec3): Vec3 {
|
|
|
- return Vec3.add(Vec3.zero(), a, b);
|
|
|
-}
|
|
|
+// function vadd(a: Vec3, b: Vec3): Vec3 {
|
|
|
+// return Vec3.add(Vec3.zero(), a, b);
|
|
|
+// }
|
|
|
|
|
|
function vneg(u: Vec3): Vec3 {
|
|
|
return Vec3.negate(Vec3.zero(), u);
|
|
@@ -136,3 +163,7 @@ export function getChainExpression(chainId: string): Expression {
|
|
|
});
|
|
|
return query;
|
|
|
}
|
|
|
+
|
|
|
+export function getCurrentHierarchy(plugin: PluginUIContext) {
|
|
|
+ return plugin.managers.structure.hierarchy.current;
|
|
|
+}
|