|
@@ -78,14 +78,14 @@ export function createMembraneOrientation(pdbtmDescriptor: PDBTMDescriptor): Mem
|
|
|
const transformation: Mat4 = transformationForStateTransform(membrane.transformation_matrix);
|
|
|
const translation: Vec3 = Mat4.getTranslation(Vec3.zero(), transformation);
|
|
|
|
|
|
- console.log("MEMBRANE TRNASFORMATION:\n\n", Mat4.makeTable(transformation));
|
|
|
+ // TODO: console.log("MEMBRANE TRNASFORMATION:\n\n", Mat4.makeTable(transformation));
|
|
|
Vec3.negate(translation, translation);
|
|
|
Mat4.setTranslation(transformation, translation);
|
|
|
- console.log("MEMBRANE TRNASFORMATION: NEGATED trnltn:\n\n", Mat4.makeTable(transformation));
|
|
|
+ // TODO: console.log("MEMBRANE TRNASFORMATION: NEGATED trnltn:\n\n", Mat4.makeTable(transformation));
|
|
|
|
|
|
// transpose rotation of transformation (inverse rotation)
|
|
|
Mat4.transpose(transformation, Mat4.extractRotation(transformation, transformation));
|
|
|
- console.log("MEMBRANE TRANSPOSED:\n\n", Mat4.makeTable(transformation));
|
|
|
+ // TODO: console.log("MEMBRANE TRANSPOSED:\n\n", Mat4.makeTable(transformation));
|
|
|
|
|
|
// transform membrane normal
|
|
|
const membraneNormal: Vec3 = Vec3.fromObj(membrane.normal);
|
|
@@ -118,7 +118,7 @@ export function transformationForStateTransform(tmatrix: PDBTMTransformationMatr
|
|
|
tmatrix.rowy.t,
|
|
|
tmatrix.rowz.t
|
|
|
));
|
|
|
- console.log('MAT4\n', Mat4.makeTable(mx));
|
|
|
+ // TODO: console.log('MAT4\n', Mat4.makeTable(mx));
|
|
|
return mx;
|
|
|
}
|
|
|
|
|
@@ -133,7 +133,6 @@ export function getAtomGroupExpression(chainId: string, auth_array: number[]): E
|
|
|
}
|
|
|
|
|
|
export function getChainExpression(chainId: string): Expression {
|
|
|
- // TODO console.log('auth_array:', auth_array);
|
|
|
const query: Expression =
|
|
|
MS.struct.generator.atomGroups({
|
|
|
'chain-test': MS.core.rel.eq([chainId, MS.ammp('label_asym_id')])
|