123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- import './index.html';
- import {RcsbFv3DCustom} from "../../RcsbFv3D/RcsbFv3DCustom";
- import {RcsbFvStructureInterface} from "../../RcsbFvStructure/RcsbFvStructure";
- import {LoadMethod} from "../../RcsbFvStructure/StructurePlugins/MolstarPlugin";
- import {
- BlockSelectorManager,
- CustomViewInterface,
- FeatureBlockInterface, FeatureViewInterface
- } from "../../RcsbFvSequence/SequenceViews/CustomView";
- import * as React from "react";
- import {
- RcsbFv,
- RcsbFvDisplayTypes,
- RcsbFvRowConfigInterface,
- RcsbFvTrackDataElementInterface
- } from "@rcsb/rcsb-saguaro";
- import {
- ChainSelectionInterface,
- RcsbFvSelectorManager,
- RegionSelectionInterface
- } from "../../RcsbFvSelection/RcsbFvSelectorManager";
- import {
- SaguaroPluginPublicInterface
- } from "../../RcsbFvStructure/StructurePlugins/SaguaroPluginInterface";
- const rowConfigChainA: Array<RcsbFvRowConfigInterface> = [
- {
- trackId: "sequenceTrack",
- trackHeight: 20,
- trackColor: "#F9F9F9",
- displayType: RcsbFvDisplayTypes.SEQUENCE,
- nonEmptyDisplay: true,
- rowTitle: "CHAIN A",
- trackData: [
- {
- begin: 1,
- value: "CGVPAIQPVLSGLSRIVNGEEAVPGSWPWQVSLQDKTGFHFCGGSLINENWVVTAAHCGVTTSDVVVAGEFDQGSSSEKIQKLKIAKVFKNSKYNSLTINNDITLLKLSTAASFSQTVSAVCLPSASDDFAAGTTCVTTGWGLTRYTNANTPDRLQQASLPLLSNTNCKKYWGTKIKDAMICAGASGVSSCMGDSGGPLVCKKNGAWTLVGIVSWGSSTCSTSTPGVYARVTALVNWVQQTLAAN"
- }
- ]
- },{
- trackId: "blockTrack",
- trackHeight: 20,
- trackColor: "#F9F9F9",
- displayType: RcsbFvDisplayTypes.BLOCK,
- displayColor: "#76ae91",
- rowTitle: "FEATURE",
- trackData: [{
- begin: 20,
- end: 25
- },{
- begin: 150,
- end: 160
- }]
- }
- ];
- const rowConfigChainB: Array<RcsbFvRowConfigInterface> = [
- {
- trackId: "sequenceTrack",
- trackHeight: 20,
- trackColor: "#F9F9F9",
- displayType: RcsbFvDisplayTypes.SEQUENCE,
- nonEmptyDisplay: true,
- rowTitle: "CHAIN B",
- trackData: [
- {
- begin: 1,
- value: "TEFGSELKSFPEVVGKTVDQAREYFTLHYPQYDVYFLPEGSPVTLDLRYNRVRVFYNPGTNVVNHVPHVG"
- }
- ]
- },{
- trackId: "blockTrack",
- trackHeight: 20,
- trackColor: "#F9F9F9",
- displayType: RcsbFvDisplayTypes.BLOCK,
- displayColor: "#f17070",
- rowTitle: "FEATURE",
- trackData: [{
- begin: 20,
- end: 50
- }]
- }
- ];
- const fvConfigChainA: FeatureViewInterface = {
- boardId:"1acb.A_board",
- boardConfig: {
- range: {
- min: 1,
- max: 245
- },
- rowTitleWidth: 190,
- includeAxis: true
- },
- rowConfig: rowConfigChainA,
- sequenceSelectionChangeCallback: (plugin: SaguaroPluginPublicInterface, selectorManager: RcsbFvSelectorManager, sequenceRegion: Array<RcsbFvTrackDataElementInterface>) => {
- selectorManager.clearSelection("select", {modelId:"1acb_board", labelAsymId:"A"});
- if(sequenceRegion.length > 0) {
- const regions = sequenceRegion.map(r => ({
- modelId: "1acb_board",
- labelAsymId: "A",
- region: {begin: r.begin, end: r.end ?? r.begin, source: "sequence"} as RegionSelectionInterface
- }));
- selectorManager.addSelectionFromMultipleRegions(regions, "select");
- plugin.select(regions.map(r => ({
- ...r,
- begin: r.region.begin,
- end: r.region.end
- })), "select", "add");
- }else{
- plugin.clearSelection("select", {modelId: "1acb_board", labelAsymId: "A"})
- plugin.resetCamera();
- }
- },
- sequenceElementClickCallback: (plugin: SaguaroPluginPublicInterface, selectorManager: RcsbFvSelectorManager, d: RcsbFvTrackDataElementInterface) => {
- if(d!=null)
- plugin.cameraFocus("1acb_board", "A", d.begin, d.end ?? d.begin);
- },
- sequenceHoverCallback: (plugin: SaguaroPluginPublicInterface, selectorManager: RcsbFvSelectorManager, elements: Array<RcsbFvTrackDataElementInterface>) => {
- if(elements == null || elements.length == 0)
- plugin.clearSelection("hover");
- else
- plugin.select(elements.map(e=>({
- modelId: "1acb_board",
- labelAsymId: "A",
- begin: e.begin,
- end: e.end ?? e.begin
- })), "hover", "set");
- },
- structureSelectionCallback: (plugin: SaguaroPluginPublicInterface, pfv: RcsbFv, selection: RcsbFvSelectorManager) => {
- const sel: ChainSelectionInterface | undefined = selection.getSelectionWithCondition("1acb_board", "A", "select");
- if(sel == null) {
- pfv.clearSelection("select");
- plugin.resetCamera();
- }else {
- pfv.setSelection({elements: sel.regions, mode: "select"});
- }
- },
- structureHoverCallback: (plugin: SaguaroPluginPublicInterface, pfv: RcsbFv, selection: RcsbFvSelectorManager) => {
- const sel: ChainSelectionInterface | undefined = selection.getSelectionWithCondition("1acb_board", "A", "hover");
- if(sel == null)
- pfv.clearSelection("hover");
- else
- pfv.setSelection({elements:sel.regions, mode:"hover"});
- }
- }
- const fvConfigChainB: FeatureViewInterface = {
- boardId:"1acb.B_board",
- boardConfig: {
- range: {
- min: 1,
- max: 70
- },
- rowTitleWidth: 190,
- includeAxis: true
- },
- rowConfig: rowConfigChainB,
- sequenceSelectionChangeCallback: (plugin: SaguaroPluginPublicInterface, selectorManager: RcsbFvSelectorManager, sequenceRegion: Array<RcsbFvTrackDataElementInterface>) => {
- selectorManager.clearSelection("select", {modelId:"1acb_board", labelAsymId:"B"});
- if(sequenceRegion.length > 0) {
- const regions = sequenceRegion.map(r => ({
- modelId: "1acb_board",
- labelAsymId: "B",
- region: {begin: r.begin, end: r.end ?? r.begin, source: "sequence"} as RegionSelectionInterface
- }));
- selectorManager.addSelectionFromMultipleRegions(regions, "select");
- plugin.select(regions.map(r => ({
- ...r,
- begin: r.region.begin,
- end: r.region.end
- })), "select", "add");
- }else{
- plugin.clearSelection("select", {modelId: "1acb_board", labelAsymId: "B"})
- plugin.resetCamera();
- }
- },
- sequenceElementClickCallback: (plugin: SaguaroPluginPublicInterface, selectorManager: RcsbFvSelectorManager, d: RcsbFvTrackDataElementInterface) => {
- if(d!=null)
- plugin.cameraFocus("1acb_board", "B", d.begin, d.end ?? d.begin);
- },
- sequenceHoverCallback: (plugin: SaguaroPluginPublicInterface, selectorManager: RcsbFvSelectorManager, elements: Array<RcsbFvTrackDataElementInterface>) => {
- if(elements == null || elements.length == 0)
- plugin.clearSelection("hover");
- else
- plugin.select(elements.map(e=>({
- modelId: "1acb_board",
- labelAsymId: "B",
- begin: e.begin,
- end: e.end ?? e.begin
- })), "hover", "set");
- },
- structureSelectionCallback: (plugin: SaguaroPluginPublicInterface, pfv: RcsbFv, selection: RcsbFvSelectorManager) => {
- const sel: ChainSelectionInterface | undefined = selection.getSelectionWithCondition("1acb_board", "B", "select");
- if(sel == null) {
- pfv.clearSelection("select");
- plugin.resetCamera();
- }else {
- pfv.setSelection({elements: sel.regions, mode: "select"});
- }
- },
- structureHoverCallback: (plugin: SaguaroPluginPublicInterface, pfv: RcsbFv, selection: RcsbFvSelectorManager) => {
- const sel: ChainSelectionInterface | undefined = selection.getSelectionWithCondition("1acb_board", "B", "hover");
- if(sel == null)
- pfv.clearSelection("hover");
- else
- pfv.setSelection({elements:sel.regions, mode:"hover"});
- }
- }
- const blockChainA: FeatureBlockInterface = {
- blockId:"chainA",
- featureViewConfig: [fvConfigChainA]
- };
- const blockChainB: FeatureBlockInterface = {
- blockId:"chainB",
- featureViewConfig: [fvConfigChainB]
- };
- const blockSelectorElement: (blockSelectorManager: BlockSelectorManager) => JSX.Element = (blockSelectorManager: BlockSelectorManager) => {
- return (
- <div>
- <select onChange={(e)=>{
- blockSelectorManager.setActiveBlock(e.target.value)
- }}>
- <option value={"chainA"}>Chain A</option>
- <option value={"chainB"}>Chain B</option>
- </select>
- </div>
- );
- }
- const customConfig: CustomViewInterface = {
- blockConfig:[blockChainA, blockChainB],
- blockSelectorElement: blockSelectorElement
- }
- const sequenceConfig = {
- title: "Multiple chains example",
- subtitle: "PDB entry with two chains",
- config: customConfig
- };
- const molstarConfig: RcsbFvStructureInterface = {
- loadConfig: {
- loadMethod: LoadMethod.loadPdbIds,
- loadParams: [{
- pdbId: "1acb",
- id:"1acb_board"
- }]
- },
- pluginConfig: {
- showImportControls: true,
- showSessionControls: false
- },
- };
- document.addEventListener("DOMContentLoaded", function(event) {
- const panel3d = new RcsbFv3DCustom({
- elementId: "pfv",
- structurePanelConfig: molstarConfig,
- sequencePanelConfig: sequenceConfig,
- cssConfig:{
- structurePanel:{
- minWidth:800,
- minHeight:800
- },
- sequencePanel:{
- minWidth:800
- }
- },
- });
- panel3d.render();
- });
|