index.js 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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 rowConfigChainA = [
  14. {
  15. trackId: "sequenceTrack",
  16. trackHeight: 20,
  17. trackColor: "#F9F9F9",
  18. displayType: "sequence" /* SEQUENCE */,
  19. nonEmptyDisplay: true,
  20. rowTitle: "CHAIN A",
  21. trackData: [
  22. {
  23. begin: 1,
  24. value: "CGVPAIQPVLSGLSRIVNGEEAVPGSWPWQVSLQDKTGFHFCGGSLINENWVVTAAHCGVTTSDVVVAGEFDQGSSSEKIQKLKIAKVFKNSKYNSLTINNDITLLKLSTAASFSQTVSAVCLPSASDDFAAGTTCVTTGWGLTRYTNANTPDRLQQASLPLLSNTNCKKYWGTKIKDAMICAGASGVSSCMGDSGGPLVCKKNGAWTLVGIVSWGSSTCSTSTPGVYARVTALVNWVQQTLAAN"
  25. }
  26. ]
  27. }, {
  28. trackId: "blockTrack",
  29. trackHeight: 20,
  30. trackColor: "#F9F9F9",
  31. displayType: "block" /* BLOCK */,
  32. displayColor: "#76ae91",
  33. rowTitle: "FEATURE",
  34. trackData: [{
  35. begin: 20,
  36. end: 25
  37. }, {
  38. begin: 150,
  39. end: 160
  40. }]
  41. }
  42. ];
  43. var rowConfigChainB = [
  44. {
  45. trackId: "sequenceTrack",
  46. trackHeight: 20,
  47. trackColor: "#F9F9F9",
  48. displayType: "sequence" /* SEQUENCE */,
  49. nonEmptyDisplay: true,
  50. rowTitle: "CHAIN B",
  51. trackData: [
  52. {
  53. begin: 1,
  54. value: "TEFGSELKSFPEVVGKTVDQAREYFTLHYPQYDVYFLPEGSPVTLDLRYNRVRVFYNPGTNVVNHVPHVG"
  55. }
  56. ]
  57. }, {
  58. trackId: "blockTrack",
  59. trackHeight: 20,
  60. trackColor: "#F9F9F9",
  61. displayType: "block" /* BLOCK */,
  62. displayColor: "#f17070",
  63. rowTitle: "FEATURE",
  64. trackData: [{
  65. begin: 20,
  66. end: 50
  67. }]
  68. }
  69. ];
  70. var fvConfigChainA = {
  71. boardId: "1acb.A_board",
  72. boardConfig: {
  73. range: {
  74. min: 1,
  75. max: 245
  76. },
  77. disableMenu:true,
  78. rowTitleWidth: 80,
  79. trackWidth: 670,
  80. includeAxis: true
  81. },
  82. rowConfig: rowConfigChainA,
  83. sequenceSelectionChangeCallback: function (plugin, stateManager, sequenceRegion) {
  84. stateManager.selectionState.clearSelection("select", { modelId: "1acb_board", labelAsymId: "A" });
  85. plugin.clearSelection("select", { modelId: "1acb_board", labelAsymId: "A" });
  86. if (sequenceRegion.length > 0) {
  87. var regions = sequenceRegion.map(function (r) {
  88. var _a;
  89. return ({
  90. modelId: "1acb_board",
  91. labelAsymId: "A",
  92. region: { begin: r.begin, end: (_a = r.end) !== null && _a !== void 0 ? _a : r.begin, source: "sequence" }
  93. });
  94. });
  95. stateManager.selectionState.addSelectionFromMultipleRegions(regions, "select");
  96. plugin.select(regions.map(function (r) { return (__assign(__assign({}, r), { begin: r.region.begin, end: r.region.end })); }), "select", "add");
  97. }
  98. else {
  99. plugin.resetCamera();
  100. }
  101. },
  102. sequenceElementClickCallback: function (plugin, selectorManager, d) {
  103. var _a;
  104. if (d != null)
  105. plugin.cameraFocus("1acb_board", "A", d.begin, (_a = d.end) !== null && _a !== void 0 ? _a : d.begin);
  106. },
  107. sequenceHoverCallback: function (plugin, selectorManager, elements) {
  108. if (elements == null || elements.length == 0)
  109. plugin.clearSelection("hover");
  110. else
  111. plugin.select(elements.map(function (e) {
  112. var _a;
  113. return ({
  114. modelId: "1acb_board",
  115. labelAsymId: "A",
  116. begin: e.begin,
  117. end: (_a = e.end) !== null && _a !== void 0 ? _a : e.begin
  118. });
  119. }), "hover", "set");
  120. },
  121. structureSelectionCallback: function (plugin, pfv, stateManager) {
  122. const sel = stateManager.selectionState.getSelectionWithCondition("1acb_board", "A", "select");
  123. if(sel == null) {
  124. pfv.clearSelection("select");
  125. plugin.resetCamera();
  126. }else {
  127. pfv.setSelection({elements: sel.regions, mode: "select"});
  128. }
  129. },
  130. structureHoverCallback: function (plugin, pfv, stateManager) {
  131. var sel = stateManager.selectionState.getSelectionWithCondition("1acb_board", "A", "hover");
  132. if (sel == null)
  133. pfv.clearSelection("hover");
  134. else
  135. pfv.setSelection({ elements: sel.regions, mode: "hover" });
  136. }
  137. };
  138. var fvConfigChainB = {
  139. boardId: "1acb.B_board",
  140. boardConfig: {
  141. range: {
  142. min: 1,
  143. max: 70
  144. },
  145. disableMenu:true,
  146. rowTitleWidth: 80,
  147. trackWidth: 670,
  148. includeAxis: true
  149. },
  150. rowConfig: rowConfigChainB,
  151. sequenceSelectionChangeCallback: function (plugin, stateManager, sequenceRegion) {
  152. stateManager.selectionState.clearSelection("select", { modelId: "1acb_board", labelAsymId: "B" });
  153. plugin.clearSelection("select", { modelId: "1acb_board", labelAsymId: "B" });
  154. if (sequenceRegion.length > 0) {
  155. var regions = sequenceRegion.map(function (r) {
  156. var _a;
  157. return ({
  158. modelId: "1acb_board",
  159. labelAsymId: "B",
  160. region: { begin: r.begin, end: (_a = r.end) !== null && _a !== void 0 ? _a : r.begin, source: "sequence" }
  161. });
  162. });
  163. stateManager.selectionState.addSelectionFromMultipleRegions(regions, "select");
  164. plugin.select(regions.map(function (r) { return (__assign(__assign({}, r), { begin: r.region.begin, end: r.region.end })); }), "select", "add");
  165. }
  166. else {
  167. plugin.resetCamera();
  168. }
  169. },
  170. sequenceElementClickCallback: function (plugin, selectorManager, d) {
  171. var _a;
  172. if (d != null)
  173. plugin.cameraFocus("1acb_board", "B", d.begin, (_a = d.end) !== null && _a !== void 0 ? _a : d.begin);
  174. },
  175. sequenceHoverCallback: function (plugin, selectorManager, elements) {
  176. if (elements == null || elements.length == 0)
  177. plugin.clearSelection("hover");
  178. else
  179. plugin.select(elements.map(function (e) {
  180. var _a;
  181. return ({
  182. modelId: "1acb_board",
  183. labelAsymId: "B",
  184. begin: e.begin,
  185. end: (_a = e.end) !== null && _a !== void 0 ? _a : e.begin
  186. });
  187. }), "hover", "set");
  188. },
  189. structureSelectionCallback: function (plugin, pfv, stateManager) {
  190. const sel = stateManager.selectionState.getSelectionWithCondition("1acb_board", "B", "select");
  191. if (sel == null) {
  192. pfv.clearSelection("select");
  193. plugin.resetCamera();
  194. }
  195. else {
  196. pfv.setSelection({ elements: sel.regions, mode: "select" });
  197. }
  198. },
  199. structureHoverCallback: function (plugin, pfv, stateManager) {
  200. var sel = stateManager.selectionState.getSelectionWithCondition("1acb_board", "B", "hover");
  201. if (sel == null)
  202. pfv.clearSelection("hover");
  203. else
  204. pfv.setSelection({ elements: sel.regions, mode: "hover" });
  205. }
  206. };
  207. var blockChainA = {
  208. blockId: "chainA",
  209. featureViewConfig: [fvConfigChainA]
  210. };
  211. var blockChainB = {
  212. blockId: "chainB",
  213. featureViewConfig: [fvConfigChainB]
  214. };
  215. var blockSelectorElement = function (blockSelectorManager) {
  216. return (React.createElement("div", null,
  217. React.createElement("select", { onChange: function (e) {
  218. blockSelectorManager.setActiveBlock(e.target.value);
  219. } },
  220. React.createElement("option", { value: "chainA" }, "Chain A"),
  221. React.createElement("option", { value: "chainB" }, "Chain B"))));
  222. };
  223. var customConfig = {
  224. blockConfig: [blockChainA, blockChainB],
  225. blockSelectorElement: blockSelectorElement
  226. };
  227. var sequenceConfig = {
  228. title: undefined,
  229. subtitle: undefined,
  230. config: customConfig
  231. };
  232. var molstarConfig = {
  233. loadConfig: {
  234. loadMethod: "loadPdbId",
  235. loadParams: {
  236. entryId: "1acb",
  237. id: "1acb_board"
  238. }
  239. },
  240. structureViewerConfig: {
  241. viewerProps:{
  242. showImportControls: true,
  243. showSessionControls: false
  244. }
  245. },
  246. };
  247. document.addEventListener("DOMContentLoaded", function (event) {
  248. var panel3d = new RcsbFv3D.custom({
  249. elementId: "pfv",
  250. structurePanelConfig: molstarConfig,
  251. sequencePanelConfig: sequenceConfig,
  252. cssConfig: {
  253. overwriteCss:true,
  254. rootPanel:{
  255. display:"flex",
  256. flexDirection:"column-reverse"
  257. },
  258. structurePanel:{
  259. width: 750,
  260. height: 700
  261. },
  262. sequencePanel:{
  263. width:750,
  264. marginBottom:5
  265. }
  266. },
  267. });
  268. panel3d.render();
  269. });