|
@@ -9,23 +9,37 @@ import { Expression } from '../../mol-script/language/expression';
|
|
|
import { MembraneOrientation } from './prop';
|
|
|
import { TmDetColorThemeProvider } from './tmdet-color-theme';
|
|
|
|
|
|
-export async function applyTransformations(ctx: PluginUIContext, pdbtmDescriptor: PDBTMDescriptor) {
|
|
|
+export async function applyTransformations(plugin: PluginUIContext, pdbtmDescriptor: PDBTMDescriptor) {
|
|
|
const annotations = pdbtmDescriptor.additional_entry_annotations;
|
|
|
|
|
|
console.log('BIOMX', annotations.biomatrix);
|
|
|
- if (annotations.biomatrix == undefined) {
|
|
|
- return;
|
|
|
+ if (annotations.biomatrix) {
|
|
|
+ annotations.biomatrix.matrix_list.forEach(function(mx) {
|
|
|
+ mx.apply_to_chain_list.forEach(function(chainPair) {
|
|
|
+ let id = chainPair.chain_id;
|
|
|
+ chainTransformation(plugin, pdbtmDescriptor, mx.transformation_matrix, id);
|
|
|
+ });
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
- annotations.biomatrix.matrix_list.forEach(function(mx) {
|
|
|
- mx.apply_to_chain_list.forEach(function(chainPair) {
|
|
|
- let id = chainPair.chain_id;
|
|
|
- let newId = chainPair.new_chain_id;
|
|
|
- console.log(`before RED ${id} -> ${newId}`);
|
|
|
- chainTransformation(ctx, pdbtmDescriptor, mx.transformation_matrix, id);
|
|
|
- console.log("after RED");
|
|
|
- });
|
|
|
- });
|
|
|
+ // 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);
|
|
|
+
|
|
|
+ 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();
|
|
|
+
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -39,7 +53,7 @@ export async function applyTransformations(ctx: PluginUIContext, pdbtmDescriptor
|
|
|
export function chainTransformation(plugin: PluginUIContext, pdbtmDescriptor: PDBTMDescriptor, transformationMatrix: PDBTMTransformationMatrix, chainId: string): void {
|
|
|
const query: Expression = getChainExpression(chainId);
|
|
|
|
|
|
- let transformation = transformationForStateTransform(transformationMatrix);
|
|
|
+ const transformation = transformationForStateTransform(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);
|
|
|
|
|
@@ -70,42 +84,18 @@ function vneg(u: Vec3): Vec3 {
|
|
|
}
|
|
|
|
|
|
export function createMembraneOrientation(pdbtmDescriptor: PDBTMDescriptor): MembraneOrientation {
|
|
|
- const annotations = pdbtmDescriptor.additional_entry_annotations;
|
|
|
- const membrane = annotations.membrane;
|
|
|
- const transformation: Mat4 = transformationForStateTransform(membrane.transformation_matrix);
|
|
|
- const translation: Vec3 = Mat4.getTranslation(Vec3.zero(), transformation);
|
|
|
-
|
|
|
- // TODO: console.log("MEMBRANE TRNASFORMATION:\n\n", Mat4.makeTable(transformation));
|
|
|
- Vec3.negate(translation, translation);
|
|
|
- Mat4.setTranslation(transformation, translation);
|
|
|
- // TODO: console.log("MEMBRANE TRNASFORMATION: NEGATED trnltn:\n\n", Mat4.makeTable(transformation));
|
|
|
+ const membrane = pdbtmDescriptor.additional_entry_annotations.membrane;
|
|
|
|
|
|
- // transpose rotation of transformation (inverse rotation)
|
|
|
- Mat4.transpose(transformation, Mat4.extractRotation(transformation, transformation));
|
|
|
- // TODO: console.log("MEMBRANE TRANSPOSED:\n\n", Mat4.makeTable(transformation));
|
|
|
-
|
|
|
- // transform membrane normal
|
|
|
const membraneNormal: Vec3 = Vec3.fromObj(membrane.normal);
|
|
|
- Vec3.transformMat4(membraneNormal, membraneNormal, transformation);
|
|
|
-
|
|
|
const result: MembraneOrientation = {
|
|
|
- planePoint1: vadd(membraneNormal, translation),
|
|
|
- planePoint2: vadd(vneg(membraneNormal), translation),
|
|
|
- centroid: translation,
|
|
|
+ planePoint1: membraneNormal,
|
|
|
+ planePoint2: vneg(membraneNormal),
|
|
|
+ centroid: Vec3.zero(),
|
|
|
normalVector: membraneNormal,
|
|
|
|
|
|
// (NOTE: the TMDET extension calculates and sets it during applying preset)
|
|
|
radius: membrane.radius
|
|
|
};
|
|
|
- // const result: MembraneOrientation = {
|
|
|
- // planePoint1: membraneNormal,
|
|
|
- // planePoint2: vneg(membraneNormal),
|
|
|
- // centroid: Vec3.zero(),
|
|
|
- // normalVector: membraneNormal,
|
|
|
-
|
|
|
- // // (NOTE: the TMDET extension calculates and sets it during applying preset)
|
|
|
- // radius: membrane.radius
|
|
|
- // };
|
|
|
|
|
|
return result;
|
|
|
}
|