labeling.ts 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 { Loci } from '../../mol-model/loci';
  10. import { StructureElement } from '../../mol-model/structure';
  11. import { LociLabel, LociLabelProvider } from '../../mol-plugin-state/manager/loci-label';
  12. import { TmDetChainListCache, TmDetDescriptorCache } from './prop';
  13. import { createResidueListsPerChain, getChainAndResidueIds } from './tmdet-color-theme';
  14. import { ChainList, getResidue, ResidueItem } from './types';
  15. const siteLabels = [
  16. "Side1",
  17. "Side2",
  18. "TM alpha",
  19. "TM beta",
  20. "TM re-entrant loop",
  21. "Interfacial Helix",
  22. "Unknown localization",
  23. "Membrane Inside"
  24. ];
  25. const DefaultResidueLabel = 6; // Unknown localization
  26. export const TmDetLabelProvider: LociLabelProvider = {
  27. label: (loci: Loci): LociLabel => {
  28. let labelText = siteLabels[DefaultResidueLabel];
  29. if (loci.kind == 'element-loci') {
  30. const unit = loci.elements[0].unit;
  31. const pdbId = unit.model.entryId;
  32. const descriptor = TmDetDescriptorCache.get(pdbId);
  33. if (!descriptor) {
  34. return labelText;
  35. }
  36. let chainList = TmDetChainListCache.get(pdbId);
  37. if (!chainList) {
  38. chainList = createResidueListsPerChain(descriptor.chains);
  39. TmDetChainListCache.set(pdbId, chainList);
  40. }
  41. const location = StructureElement.Loci.getFirstLocation(loci);
  42. const { chainId, residueId } = getChainAndResidueIds(location!);
  43. const residue = getResidue(chainList, chainId!, residueId!);
  44. if (residue) {
  45. labelText = siteLabels[residue?.siteId];
  46. let regionText = getRegionText(chainList, chainId!, residue);
  47. labelText = `${labelText}: ${regionText}`
  48. }
  49. }
  50. return labelText;
  51. }
  52. }
  53. function getRegionText(chainList: ChainList, chainId: string, residue: ResidueItem): string {
  54. let value = "Unknown region range";
  55. const chain = chainList.filter((chain) => chain.chainId === chainId)[0];
  56. if (chain) {
  57. // find start of region
  58. const residues = chain.residues;
  59. const authId = parseInt(residue.authId!)
  60. let previous = residues[residues.length-1];
  61. for (let i = residues.length-1; i > 0; i--) {
  62. const current = residues[i];
  63. const currentId = parseInt(current.authId!);
  64. // cancel loop when siteId changes
  65. if (currentId < authId && current.siteId != residue.siteId) {
  66. break;
  67. }
  68. previous = current;
  69. }
  70. value = `[ ${previous.authId}`;
  71. // find end of region
  72. previous = residues[0];
  73. for (let current of residues) {
  74. const currentId = parseInt(current.authId!);
  75. // cancel loop when siteId changes
  76. if (authId < currentId && current.siteId !== residue.siteId) {
  77. break;
  78. }
  79. previous = current;
  80. }
  81. value = `${value}-${previous.authId} ]`;
  82. }
  83. return value;
  84. }