polymer.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /**
  2. * Copyright (c) 2018-2023 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. * @author David Sehnal <david.sehnal@gmail.com>
  6. */
  7. import { Unit, ElementIndex, StructureElement, Bond, Structure, ResidueIndex } from '../../../../mol-model/structure';
  8. import { SortedRanges } from '../../../../mol-data/int/sorted-ranges';
  9. import { OrderedSet, Interval, SortedArray } from '../../../../mol-data/int';
  10. import { EmptyLoci, Loci } from '../../../../mol-model/loci';
  11. import { LocationIterator } from '../../../../mol-geo/util/location-iterator';
  12. import { PickingId } from '../../../../mol-geo/geometry/picking';
  13. import { getResidueLoci, StructureGroup } from './common';
  14. export * from './polymer/backbone';
  15. export * from './polymer/gap-iterator';
  16. export * from './polymer/trace-iterator';
  17. export * from './polymer/curve-segment';
  18. export const StandardTension = 0.5;
  19. export const HelixTension = 0.9;
  20. export const StandardShift = 0.5;
  21. export const NucleicShift = 0.3;
  22. export const OverhangFactor = 2;
  23. export function getPolymerRanges(unit: Unit): SortedRanges<ElementIndex> {
  24. switch (unit.kind) {
  25. case Unit.Kind.Atomic: return unit.model.atomicRanges.polymerRanges;
  26. case Unit.Kind.Spheres: return unit.model.coarseHierarchy.spheres.polymerRanges;
  27. case Unit.Kind.Gaussians: return unit.model.coarseHierarchy.gaussians.polymerRanges;
  28. }
  29. }
  30. export function getGapRanges(unit: Unit): SortedRanges<ElementIndex> {
  31. switch (unit.kind) {
  32. case Unit.Kind.Atomic: return unit.model.atomicRanges.gapRanges;
  33. case Unit.Kind.Spheres: return unit.model.coarseHierarchy.spheres.gapRanges;
  34. case Unit.Kind.Gaussians: return unit.model.coarseHierarchy.gaussians.gapRanges;
  35. }
  36. }
  37. export namespace PolymerLocationIterator {
  38. export function fromGroup(structureGroup: StructureGroup, options?: { asSecondary?: boolean }): LocationIterator {
  39. const { group, structure } = structureGroup;
  40. const polymerElements = group.units[0].polymerElements;
  41. const groupCount = polymerElements.length;
  42. const instanceCount = group.units.length;
  43. const location = StructureElement.Location.create(structure);
  44. const getLocation = (groupIndex: number, instanceIndex: number) => {
  45. const unit = group.units[instanceIndex];
  46. location.unit = unit;
  47. location.element = polymerElements[groupIndex];
  48. return location;
  49. };
  50. const asSecondary = !!options?.asSecondary;
  51. function isSecondary(elementIndex: number, instanceIndex: number) {
  52. return asSecondary;
  53. }
  54. return LocationIterator(groupCount, instanceCount, 1, getLocation, false, isSecondary);
  55. }
  56. }
  57. export namespace PolymerGapLocationIterator {
  58. export function fromGroup(structureGroup: StructureGroup): LocationIterator {
  59. const { group, structure } = structureGroup;
  60. const gapElements = group.units[0].gapElements;
  61. const groupCount = gapElements.length;
  62. const instanceCount = group.units.length;
  63. const location = StructureElement.Location.create(structure);
  64. const getLocation = (groupIndex: number, instanceIndex: number) => {
  65. const unit = group.units[instanceIndex];
  66. location.unit = unit;
  67. location.element = gapElements[groupIndex];
  68. return location;
  69. };
  70. return LocationIterator(groupCount, instanceCount, 1, getLocation);
  71. }
  72. }
  73. /** Return a Loci for the elements of the whole residue of a polymer element. */
  74. export function getPolymerElementLoci(pickingId: PickingId, structureGroup: StructureGroup, id: number) {
  75. const { objectId, instanceId, groupId } = pickingId;
  76. if (id === objectId) {
  77. const { structure, group } = structureGroup;
  78. const unit = group.units[instanceId];
  79. if (Unit.isAtomic(unit)) {
  80. return getResidueLoci(structure, unit, unit.polymerElements[groupId]);
  81. } else {
  82. const { elements } = unit;
  83. const elementIndex = unit.polymerElements[groupId];
  84. const unitIndex = OrderedSet.indexOf(elements, elementIndex) as StructureElement.UnitIndex | -1;
  85. if (unitIndex !== -1) {
  86. const indices = OrderedSet.ofSingleton(unitIndex);
  87. return StructureElement.Loci(structure, [{ unit, indices }]);
  88. }
  89. }
  90. }
  91. return EmptyLoci;
  92. }
  93. function tryApplyResidueInterval(offset: number, elements: SortedArray<ElementIndex>, traceElementIndex: ArrayLike<ElementIndex | -1>, apply: (interval: Interval) => boolean, r1: ResidueIndex, r2: ResidueIndex) {
  94. let start = -1, startIdx = -1;
  95. for (let rI = r1; rI <= r2; rI++) {
  96. const eI = traceElementIndex[rI];
  97. if (eI < 0) continue;
  98. start = OrderedSet.indexOf(elements, eI);
  99. if (start >= 0) {
  100. startIdx = rI;
  101. break;
  102. }
  103. }
  104. if (start < 0) {
  105. return false;
  106. }
  107. let end = start;
  108. for (let rI = r2; rI > startIdx; rI--) {
  109. const eI = traceElementIndex[rI];
  110. if (eI < 0) continue;
  111. const e = OrderedSet.indexOf(elements, eI);
  112. if (e >= 0) {
  113. end = e;
  114. break;
  115. }
  116. }
  117. return apply(Interval.ofRange(offset + start, offset + end));
  118. }
  119. export function eachAtomicUnitTracedElement(offset: number, groupSize: number, elementsSelector: (u: Unit.Atomic) => SortedArray<ElementIndex>, apply: (interval: Interval) => boolean, e: StructureElement.Loci['elements'][0]) {
  120. let changed = false;
  121. const { elements } = e.unit;
  122. const { traceElementIndex } = e.unit.model.atomicHierarchy.derived.residue;
  123. const { index: resIndex } = e.unit.model.atomicHierarchy.residueAtomSegments;
  124. const tracedElements = elementsSelector(e.unit as Unit.Atomic);
  125. if (Interval.is(e.indices)) {
  126. if (Interval.start(e.indices) === 0 && Interval.end(e.indices) === e.unit.elements.length) {
  127. // full unit here
  128. changed = apply(Interval.ofBounds(offset, offset + groupSize)) || changed;
  129. } else {
  130. const r1 = resIndex[elements[Interval.min(e.indices)]];
  131. const r2 = resIndex[elements[Interval.max(e.indices)]];
  132. changed = tryApplyResidueInterval(offset, tracedElements, traceElementIndex, apply, r1, r2) || changed;
  133. }
  134. } else {
  135. const { indices } = e;
  136. for (let i = 0, _i = indices.length; i < _i; i++) {
  137. const r1 = resIndex[elements[indices[i]]];
  138. let r2 = r1;
  139. let endI = i + 1;
  140. while (endI < _i) {
  141. const _r = resIndex[elements[indices[endI]]];
  142. if (_r - r2 > 1) break;
  143. r2 = _r;
  144. endI++;
  145. }
  146. i = endI - 1;
  147. changed = tryApplyResidueInterval(offset, tracedElements, traceElementIndex, apply, r1, r2) || changed;
  148. }
  149. }
  150. return changed;
  151. }
  152. function selectPolymerElements(u: Unit) { return u.polymerElements; }
  153. /** Mark a polymer element (e.g. part of a cartoon trace) */
  154. export function eachPolymerElement(loci: Loci, structureGroup: StructureGroup, apply: (interval: Interval) => boolean) {
  155. let changed = false;
  156. if (!StructureElement.Loci.is(loci)) return false;
  157. const { structure, group } = structureGroup;
  158. if (!Structure.areEquivalent(loci.structure, structure)) return false;
  159. const groupCount = group.units[0].polymerElements.length;
  160. for (const e of loci.elements) {
  161. if (!group.unitIndexMap.has(e.unit.id)) continue;
  162. const offset = group.unitIndexMap.get(e.unit.id) * groupCount; // to target unit instance
  163. if (Unit.isAtomic(e.unit)) {
  164. changed = eachAtomicUnitTracedElement(offset, groupCount, selectPolymerElements, apply, e) || changed;
  165. } else {
  166. if (Interval.is(e.indices)) {
  167. const start = offset + Interval.start(e.indices);
  168. const end = offset + Interval.end(e.indices);
  169. changed = apply(Interval.ofBounds(start, end)) || changed;
  170. } else {
  171. for (let i = 0, _i = e.indices.length; i < _i; i++) {
  172. const start = e.indices[i];
  173. let endI = i + 1;
  174. while (endI < _i && e.indices[endI] === start) endI++;
  175. i = endI - 1;
  176. const end = e.indices[i];
  177. changed = apply(Interval.ofRange(offset + start, offset + end)) || changed;
  178. }
  179. }
  180. }
  181. }
  182. return changed;
  183. }
  184. /** Return a Loci for both directions of the polymer gap element. */
  185. export function getPolymerGapElementLoci(pickingId: PickingId, structureGroup: StructureGroup, id: number) {
  186. const { objectId, instanceId, groupId } = pickingId;
  187. if (id === objectId) {
  188. const { structure, group } = structureGroup;
  189. const unit = group.units[instanceId];
  190. const unitIndexA = OrderedSet.indexOf(unit.elements, unit.gapElements[groupId]) as StructureElement.UnitIndex;
  191. const unitIndexB = OrderedSet.indexOf(unit.elements, unit.gapElements[groupId % 2 ? groupId - 1 : groupId + 1]) as StructureElement.UnitIndex;
  192. if (unitIndexA !== -1 && unitIndexB !== -1) {
  193. return Bond.Loci(structure, [
  194. Bond.Location(structure, unit, unitIndexA, structure, unit, unitIndexB),
  195. Bond.Location(structure, unit, unitIndexB, structure, unit, unitIndexA)
  196. ]);
  197. }
  198. }
  199. return EmptyLoci;
  200. }
  201. export function eachPolymerGapElement(loci: Loci, structureGroup: StructureGroup, apply: (interval: Interval) => boolean) {
  202. let changed = false;
  203. if (Bond.isLoci(loci)) {
  204. const { structure, group } = structureGroup;
  205. if (!Structure.areRootsEquivalent(loci.structure, structure)) return false;
  206. loci = Bond.remapLoci(loci, structure);
  207. const groupCount = group.units[0].gapElements.length;
  208. for (const b of loci.bonds) {
  209. const unitIdx = group.unitIndexMap.get(b.aUnit.id);
  210. if (unitIdx !== undefined) {
  211. const idxA = OrderedSet.indexOf(b.aUnit.gapElements, b.aUnit.elements[b.aIndex]);
  212. const idxB = OrderedSet.indexOf(b.bUnit.gapElements, b.bUnit.elements[b.bIndex]);
  213. if (idxA !== -1 && idxB !== -1) {
  214. if (apply(Interval.ofSingleton(unitIdx * groupCount + idxA))) changed = true;
  215. }
  216. }
  217. }
  218. } else if (StructureElement.Loci.is(loci)) {
  219. const { structure, group } = structureGroup;
  220. if (!Structure.areRootsEquivalent(loci.structure, structure)) return false;
  221. loci = StructureElement.Loci.remap(loci, structure);
  222. const groupCount = group.units[0].gapElements.length;
  223. for (const e of loci.elements) {
  224. const unitIdx = group.unitIndexMap.get(e.unit.id);
  225. if (unitIdx !== undefined) {
  226. OrderedSet.forEach(e.indices, v => {
  227. const idx = OrderedSet.indexOf(e.unit.gapElements, e.unit.elements[v]);
  228. if (idx !== -1) {
  229. if (apply(Interval.ofSingleton(unitIdx * groupCount + idx))) changed = true;
  230. }
  231. });
  232. }
  233. }
  234. }
  235. return changed;
  236. }