debug-utils.ts 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /**
  2. * Copyright (C) 2022, Protein Bioinformatics Research Group, RCNS
  3. *
  4. * Licensed under CC BY-NC 4.0, see LICENSE file for more info.
  5. *
  6. * @author Gabor Tusnady <tusnady.gabor@ttk.hu>
  7. * @author Csongor Gerdan <gerdan.csongor@ttk.hu>
  8. */
  9. import { mmCIF_Database } from "molstar/lib/mol-io/reader/cif/schema/mmcif";
  10. import { Mat4, Vec3 } from "molstar/lib/mol-math/linear-algebra";
  11. import { MmcifFormat } from "molstar/lib/mol-model-formats/structure/mmcif";
  12. import { Model } from "molstar/lib/mol-model/structure";
  13. import { AtomicConformation } from "molstar/lib/mol-model/structure/model/properties/atomic";
  14. import { createStructureRepresentationParams } from "molstar/lib/mol-plugin-state/helpers/structure-representation-params";
  15. import { StateTransforms } from "molstar/lib/mol-plugin-state/transforms";
  16. import { PluginUIContext } from "molstar/lib/mol-plugin-ui/context";
  17. import { Expression } from "molstar/lib/mol-script/language/expression";
  18. import { Color } from "molstar/lib/mol-util/color";
  19. import { rotateCamera as RC } from "./camera";
  20. import { TmDetDescriptorCache } from "./prop";
  21. import { getChainExpression as GCE, getCurrentHierarchy as GCH, transformationForStateTransform, transformWholeModel } from "./transformation";
  22. import { PDBTMTransformationMatrix } from "./types";
  23. export namespace DebugUtil {
  24. let plugin: PluginUIContext;
  25. let logEnabled = false;
  26. export function init(ctx: PluginUIContext) {
  27. plugin = ctx;
  28. }
  29. //
  30. // logging
  31. //
  32. export function enableLog() {
  33. logEnabled = true;
  34. console.log('DebugUtil Enabled', logEnabled);
  35. }
  36. export function disableLog() {
  37. logEnabled = false;
  38. }
  39. export function log(...args: any[]) {
  40. if (logEnabled) {
  41. console.log(...args);
  42. }
  43. }
  44. //
  45. //
  46. // lin.alg.
  47. //
  48. export function transformVector(v: Vec3, matrix: Mat4): Vec3 {
  49. const result = Vec3.transformMat4(Vec3(), v, matrix);
  50. log("transformVector: Input v & matrix:", v, Mat4.makeTable(matrix));
  51. log("transformVector: Result vector:", result);
  52. return result;
  53. }
  54. export function descriptorMxToMat4(matrix: PDBTMTransformationMatrix): Mat4 {
  55. log("descriptorMxToMat4: Input:", matrix);
  56. const result = transformationForStateTransform(matrix);
  57. log("descriptorMxToMat4: Result:", result);
  58. return result;
  59. }
  60. //
  61. // structure utils
  62. //
  63. export const getChainExpression = GCE;
  64. export function getCellOfFirstStructure() {
  65. return getCell();
  66. }
  67. export function getCell(structureIndex: number = 0, modelIndex: number = 0) {
  68. return getCurrentHierarchy().models[structureIndex].structures[modelIndex].cell;
  69. }
  70. export function getCurrentHierarchy() {
  71. return GCH(plugin);
  72. }
  73. export function getModelOfFirstStructure() {
  74. return getCellOfFirstStructure().obj?.data.model;
  75. }
  76. // in case of mmCIF format
  77. export function dumpAtomProperties(authAtomId: number) {
  78. const model: Model|undefined = getModelOfFirstStructure();
  79. log("First model:", model);
  80. if(!model) {
  81. return;
  82. }
  83. const rowCount = model.atomicHierarchy.atoms._rowCount;
  84. const conformation: AtomicConformation = model.atomicConformation;
  85. const db: mmCIF_Database = (model.sourceData as MmcifFormat).data.db;
  86. const atom_site = db.atom_site;
  87. for (let index = 0; index < rowCount; index++) {
  88. if (conformation.atomId.value(index) == authAtomId) {
  89. log("Model Atom Conformation:", {
  90. atomIdParameter: authAtomId,
  91. atomId: conformation.atomId.value(index),
  92. coords: [
  93. conformation.x[index],
  94. conformation.y[index],
  95. conformation.z[index]
  96. ],
  97. xyzDefined: conformation.xyzDefined
  98. });
  99. log("Atom Source Data (mmCIF database):", {
  100. authId: atom_site.auth_atom_id.value(index),
  101. compId: atom_site.auth_comp_id.value(index),
  102. authAsymId: atom_site.auth_asym_id.value(index),
  103. authSeqId: atom_site.auth_seq_id.value(index),
  104. coords: [
  105. atom_site.Cartn_x.value(index),
  106. atom_site.Cartn_y.value(index),
  107. atom_site.Cartn_z.value(index)
  108. ]
  109. });
  110. }
  111. }
  112. }
  113. export function getCachesOfEachStructure() {
  114. let sIndex = 0;
  115. getCurrentHierarchy().structures.forEach(struct => {
  116. let cIndex = 0;
  117. struct.components.forEach(component => {
  118. log(`struct: ${sIndex}; component: ${cIndex}`, component.cell.cache);
  119. cIndex++;
  120. });
  121. sIndex++;
  122. });
  123. }
  124. export function color(expression: Expression, color: number[], structureIndex: number = 0, modelIndex: number = 0) {
  125. const structure = getCell(structureIndex, modelIndex);
  126. const stateBuilder = plugin.build().to(structure);
  127. stateBuilder.apply(
  128. StateTransforms.Model.StructureSelectionFromExpression,
  129. { expression: expression }
  130. )
  131. .apply(
  132. StateTransforms.Representation.StructureRepresentation3D,
  133. createStructureRepresentationParams(plugin, structure.obj?.data, {
  134. type: 'ball-and-stick',
  135. color: 'uniform', colorParams: { value: Color.fromArray(color, 0) }
  136. })
  137. );
  138. stateBuilder.commit();
  139. }
  140. export function transform(entityId: string) {
  141. const tmx = TmDetDescriptorCache.get(entityId)?.additional_entry_annotations.membrane.transformation_matrix;
  142. transformWholeModel(plugin, tmx!);
  143. }
  144. //
  145. // Camera
  146. //
  147. export function rotateCamera() {
  148. RC(plugin);
  149. }
  150. export function requestCameraReset() {
  151. requestAnimationFrame(() => plugin.canvas3d?.requestCameraReset({ durationMs: 1000 }));
  152. }
  153. }