labeling.ts 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /**
  2. * Copyright (c) 2019-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  6. */
  7. import { DebugUtil } from '../../apps/tm-viewer';
  8. import { CustomElementProperty } from '../../mol-model-props/common/custom-element-property';
  9. import { Model, ElementIndex } from '../../mol-model/structure';
  10. import { Loci } from '../../mol-model/loci';
  11. import { LociLabel, LociLabelProvider } from '../../mol-plugin-state/manager/loci-label';
  12. import { TmDetChainListCache, TmDetDescriptorCache } from './prop';
  13. import { createResidueListsPerChain } from './tmdet-color-theme';
  14. import { ChainList, getResidue } from './types';
  15. import { OrderedSet } from '../../mol-data/int';
  16. const siteLabels = [
  17. "Side1",
  18. "Side2",
  19. "TM alpha",
  20. "TM beta",
  21. "TM re-entrant loop",
  22. "Interfacial Helix",
  23. "Unknown localization",
  24. "Membrane Inside"
  25. ];
  26. const DefaultResidueLabel = 6; // Unknown localization
  27. export const LabeledResidues = CustomElementProperty.create<number>({
  28. label: 'TMDet Topology Site Labels',
  29. name: 'tmdet-topology-site-labels',
  30. getData(model: Model) {
  31. const pdbId = model.entryId;
  32. DebugUtil.log('start getData', model.label, pdbId);
  33. const map = new Map<ElementIndex, number>();
  34. const descriptor = TmDetDescriptorCache.get(pdbId);
  35. if (!descriptor) {
  36. return { value: map };
  37. }
  38. // TODO: integrate with the coloring version
  39. const getSiteId = function(chains: ChainList, chainId: string, residueId: string): number {
  40. let siteId = DefaultResidueLabel;
  41. const residue = getResidue(chains, chainId, residueId);
  42. if (residue) {
  43. siteId = residue.siteId;
  44. }
  45. return siteId;
  46. };
  47. let chainList = TmDetChainListCache.get(pdbId);
  48. if (!chainList) {
  49. chainList = createResidueListsPerChain(descriptor.chains);
  50. TmDetChainListCache.set(pdbId, chainList);
  51. }
  52. DebugUtil.log('getData', model.atomicHierarchy.chainAtomSegments);
  53. // DebugUtil.log('getData: auth_comp_id', model.atomicHierarchy.atoms.auth_comp_id.toArray());
  54. const residueIndex = model.atomicHierarchy.residueAtomSegments.index;
  55. const chainIndex = model.atomicHierarchy.chainAtomSegments.index;
  56. for (let i = 0, _i = model.atomicHierarchy.atoms._rowCount; i < _i; i++) {
  57. const residueIdx = residueIndex[i];
  58. const chainIdx = chainIndex[i];
  59. const residueAuthId = model.atomicHierarchy.residues.auth_seq_id.value(residueIdx).toString();
  60. const residueName = model.atomicHierarchy.atoms.auth_comp_id.value(i).toString();
  61. const chainAuthId = model.atomicHierarchy.chains.auth_asym_id.value(chainIdx).toString();
  62. const chainLabel = model.atomicHierarchy.chains.label_asym_id.value(chainIdx).toString();
  63. //DebugUtil.log(`${i} ${residueIdx} ${residueName} ${residueAuthId} ${chainIdx} ${chainAuthId} ${chainLabel}`);
  64. map.set(i as ElementIndex, getSiteId(chainList, chainAuthId, residueAuthId));
  65. }
  66. DebugUtil.log('end of getData');
  67. return { value: map };
  68. },
  69. getLabel(e) {
  70. return siteLabels[e];
  71. }
  72. });
  73. // function residueLabel(chains: ChainList, chainId: string, residueId: string): string {
  74. // let label = DefaultResidueLabel;
  75. // const residue = getResidue(chains, chainId, residueId);
  76. // if (residue) {
  77. // label = siteLabels[residue.siteId];
  78. // }
  79. // return color;
  80. // }
  81. export const TmLabelProvider: LociLabelProvider = {
  82. label: (loci: Loci): LociLabel => {
  83. if (loci.kind == 'element-loci') {
  84. DebugUtil.log('LabelProvider:', loci.elements[0].unit.model.atomicHierarchy.chains.auth_asym_id.toArray());
  85. DebugUtil.log('LabelProvider:', loci.elements[0].unit.model.atomicHierarchy.chains.label_asym_id.toArray());
  86. DebugUtil.log('LabelProvider:', loci.elements[0].unit.model.atomicHierarchy.chains.label_entity_id.toArray());
  87. DebugUtil.log('IsLocation:', loci.structure.elementLocations());
  88. DebugUtil.log('start:', OrderedSet.start(loci.elements[0].indices));
  89. }
  90. return "hello";
  91. }
  92. }