debug-utils.ts 5.7 KB

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