index.js 8.6 KB

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