index.tsx 9.7 KB

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