index.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. "use strict";
  2. var __assign = (this && this.__assign) || function () {
  3. __assign = Object.assign || function(t) {
  4. for (var s, i = 1, n = arguments.length; i < n; i++) {
  5. s = arguments[i];
  6. for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
  7. t[p] = s[p];
  8. }
  9. return t;
  10. };
  11. return __assign.apply(this, arguments);
  12. };
  13. var rowConfig = [
  14. {
  15. trackId: "sequenceTrack",
  16. trackHeight: 20,
  17. trackColor: "#F9F9F9",
  18. displayType: "sequence" /* SEQUENCE */,
  19. nonEmptyDisplay: true,
  20. rowTitle: "1ASH SEQUENCE",
  21. trackData: [
  22. {
  23. begin: 1,
  24. value: "ANKTRELCMKSLEHAKVDTSNEARQDGIDLYKHMFENYPPLRKYFKSREEYTAEDVQNDPFFAKQGQKILLACHVLCATYDDRETFNAYTRELLDRHARDHVHMPPEVWTDFWKLFEEYLGKKTTLDEPTKQAWHEIGREFAKEINKHGR"
  25. }
  26. ]
  27. }, {
  28. trackId: "blockTrack",
  29. trackHeight: 20,
  30. trackColor: "#F9F9F9",
  31. displayType: "block" /* BLOCK */,
  32. displayColor: "#FF0000",
  33. rowTitle: "1ASH",
  34. trackData: [{
  35. begin: 30,
  36. end: 60
  37. }]
  38. }
  39. ];
  40. var fvConfig = {
  41. boardId: "1ash_board",
  42. boardConfig: {
  43. range: {
  44. min: 1,
  45. max: 150
  46. },
  47. rowTitleWidth: 190,
  48. includeAxis: true
  49. },
  50. rowConfig: rowConfig,
  51. sequenceSelectionChangeCallback: function (plugin, stateManager, sequenceRegion) {
  52. stateManager.selectionState.clearSelection("select", { modelId: "1ash_model", labelAsymId: "A" });
  53. if (sequenceRegion.length > 0) {
  54. var regions = sequenceRegion.map(function (r) {
  55. var _a;
  56. return ({
  57. modelId: "1ash_model",
  58. labelAsymId: "A",
  59. region: { begin: r.begin, end: (_a = r.end) !== null && _a !== void 0 ? _a : r.begin, source: "sequence" }
  60. });
  61. });
  62. stateManager.selectionState.addSelectionFromMultipleRegions(regions, "select");
  63. plugin.select(regions.map(function (r) { return (__assign(__assign({}, r), { begin: r.region.begin, end: r.region.end })); }), "select", "set");
  64. }
  65. else {
  66. plugin.clearSelection("select", { modelId: "1ash_model", labelAsymId: "A" });
  67. plugin.resetCamera();
  68. }
  69. },
  70. sequenceElementClickCallback: function (plugin, stateManager, d) {
  71. var _a;
  72. if (d != null)
  73. plugin.cameraFocus("1ash_model", "A", d.begin, (_a = d.end) !== null && _a !== void 0 ? _a : d.begin);
  74. },
  75. sequenceHoverCallback: function (plugin, stateManager, elements) {
  76. if (elements == null || elements.length == 0)
  77. plugin.clearSelection("hover");
  78. else
  79. plugin.select(elements.map(function (e) {
  80. var _a;
  81. return ({
  82. modelId: "1ash_model",
  83. labelAsymId: "A",
  84. begin: e.begin,
  85. end: (_a = e.end) !== null && _a !== void 0 ? _a : e.begin
  86. });
  87. }), "hover", "set");
  88. },
  89. structureSelectionCallback: function (plugin, pfv, stateManager) {
  90. const sel = stateManager.selectionState.getSelectionWithCondition("1ash_model", "A", "select");
  91. if(sel == null) {
  92. pfv.clearSelection("select");
  93. plugin.resetCamera();
  94. }else {
  95. pfv.setSelection({elements: sel.regions, mode: "select"});
  96. }
  97. },
  98. structureHoverCallback: function (plugin, pfv, stateManager) {
  99. const sel = stateManager.selectionState.getSelectionWithCondition("1ash_model", "A", "hover");
  100. if(sel == null) {
  101. pfv.clearSelection("hover");
  102. }else {
  103. pfv.setSelection({elements: sel.regions, mode: "hover"});
  104. }
  105. }
  106. };
  107. var block = {
  108. blockId: "MyBlock_1",
  109. featureViewConfig: [fvConfig]
  110. };
  111. var customConfig = {
  112. blockConfig: [block]
  113. };
  114. var sequenceConfig = {
  115. title: "Single chain example",
  116. subtitle: "PDB entry with single chain",
  117. config: customConfig
  118. };
  119. var molstarConfig = {
  120. loadConfig: {
  121. loadMethod: "loadPdbId",
  122. loadParams: {
  123. entryId: "1ash",
  124. id: "1ash_model"
  125. }
  126. },
  127. structureViewerConfig: {
  128. viewerProps:{
  129. showImportControls: true,
  130. showSessionControls: false
  131. }
  132. },
  133. };
  134. document.addEventListener("DOMContentLoaded", function (event) {
  135. var panel3d = new RcsbFv3D.custom({
  136. elementId: "pfv",
  137. structurePanelConfig: molstarConfig,
  138. sequencePanelConfig: sequenceConfig,
  139. cssConfig: {
  140. structurePanel: {
  141. minWidth: 800,
  142. minHeight: 800
  143. },
  144. sequencePanel: {
  145. minWidth: 800
  146. }
  147. }
  148. });
  149. panel3d.render();
  150. });