|
@@ -23,9 +23,7 @@ import {RcsbFvStateManager} from "../RcsbFvState/RcsbFvStateManager";
|
|
|
import {RcsbFvStructureConfigInterface} from "../RcsbFvStructure/RcsbFvStructure";
|
|
|
import {ViewerProps} from "@rcsb/rcsb-molstar/build/src/viewer";
|
|
|
import { updateSiteColors } from "./tmdet-extension/tmdet-color-theme";
|
|
|
-import { fetchHtpDescriptor, fetchPdbtmJsvLibDescriptor, htpDescriptorToTrackData, jsvLibDescriptorToTrackData, registerRegionDescriptorData } from "./UniTmpHelper";
|
|
|
import { TmDetRcsbPreset } from "./TmTrajectoryHierarchyPreset";
|
|
|
-import { TmDetDescriptorCache } from "./tmdet-extension/prop";
|
|
|
import { TmRowTitleComponent } from "./tmdet-viewer/TmRowTitleComponent";
|
|
|
|
|
|
export type TmFvConfigParams = {
|
|
@@ -42,39 +40,14 @@ export async function createFeatureViewerConfing(params: TmFvConfigParams) {
|
|
|
|
|
|
const modelId = `${params.pdbEntry}_model`;
|
|
|
|
|
|
- const rowConfig: Array<RcsbFvRowConfigInterface> = [
|
|
|
- {
|
|
|
- trackId: "sequenceTrack",
|
|
|
- trackHeight: 20,
|
|
|
- trackColor: "#F9F9F9",
|
|
|
- displayType: RcsbFvDisplayTypes.SEQUENCE,
|
|
|
- nonEmptyDisplay: true,
|
|
|
- rowTitle: "N/A",
|
|
|
- trackData: [
|
|
|
- {
|
|
|
- begin: 1,
|
|
|
- value: "N/A"
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
- ];
|
|
|
-
|
|
|
const fvConfig: FeatureViewInterface<LoadMolstarInterface<unknown,unknown>,LoadMolstarReturnType> =
|
|
|
- params.fvConfigData
|
|
|
- ?? {
|
|
|
- rowConfig: rowConfig,
|
|
|
- sequenceSelectionChangeCallback: () => {},
|
|
|
- sequenceElementClickCallback: () => {},
|
|
|
- sequenceHoverCallback: () => {},
|
|
|
- structureSelectionCallback: () => {},
|
|
|
- structureHoverCallback: () => {}
|
|
|
- };
|
|
|
+ params.fvConfigData;
|
|
|
|
|
|
fvConfig.boardId = `${params.pdbEntry}_board`;
|
|
|
fvConfig.boardConfig = {
|
|
|
rowTitleWidth: 190,
|
|
|
includeAxis: true,
|
|
|
- length: (fvConfig!.rowConfig[0]!.trackData![0].value as string).length
|
|
|
+ length: (fvConfig.rowConfig[0]!.trackData![0].value as string).length
|
|
|
};
|
|
|
setFvConfigCallbacks(fvConfig, modelId, params.labelAsymId);
|
|
|
|
|
@@ -114,54 +87,11 @@ export async function createFeatureViewerConfing(params: TmFvConfigParams) {
|
|
|
|
|
|
updateSiteColors(params.side1 as any);
|
|
|
|
|
|
- // TODO remove it after implementing external row title auto-config
|
|
|
- if (params.fvConfigData) {
|
|
|
- setExternalRowTitleComponent(fvConfig.rowConfig, structureRowClickHandler);
|
|
|
- }
|
|
|
-
|
|
|
- if (!params.fvConfigData) {
|
|
|
- const htpDescriptor = await fetchHtpDescriptor(params.htpEntry);
|
|
|
- const jsvlibDescriptor = await fetchPdbtmJsvLibDescriptor(params.pdbtmEntry);
|
|
|
-
|
|
|
- let sequence = htpDescriptor.Sequence.Seq;
|
|
|
- sequence = sequence.replace(/\s+/g, '');
|
|
|
-
|
|
|
- fvConfig.boardConfig.length = parseInt(htpDescriptor.Sequence['@attributes'].Length);
|
|
|
- fvConfig.rowConfig[0].rowTitle = `${htpDescriptor['@attributes'].id} sequence`;
|
|
|
- rowConfig[0].trackData![0].value = sequence;
|
|
|
- rowConfig.push(...htpDescriptorToTrackData(htpDescriptor));
|
|
|
-
|
|
|
- alignJsvLibDescriptorTrack(jsvlibDescriptor, params);
|
|
|
- console.log('JSVLIB:', jsvlibDescriptor);
|
|
|
- rowConfig.push(...jsvLibDescriptorToTrackData(jsvlibDescriptor));
|
|
|
- }
|
|
|
-
|
|
|
- // TODO: remove these test-data dump stmts.
|
|
|
- // dumpPdbtmSampleTrack({ pdbEntry: '6bms', labelAsymId: 'A', side1: params.side1 as any });
|
|
|
- // dumpPdbtmSampleTrack({ pdbEntry: '7khm', labelAsymId: 'B', side1: params.side1 as any });
|
|
|
+ setExternalRowTitleComponent(fvConfig.rowConfig, structureRowClickHandler);
|
|
|
|
|
|
return { sequenceConfig: sequenceConfig, molstarConfig: molstarConfig };
|
|
|
}
|
|
|
|
|
|
-function alignJsvLibDescriptorTrack(jsvlibDescriptor: any, params: any) {
|
|
|
- const descriptor = TmDetDescriptorCache.get(params.pdbEntry);
|
|
|
- const chain = descriptor?.chains.filter(ch => ch.chain_label == params.labelAsymId)[0];
|
|
|
- const offset = parseInt(chain?.residues[0].pdb_res_label!) - 1;
|
|
|
- jsvlibDescriptor.regions.forEach((region: any) => {
|
|
|
- region.start += offset;
|
|
|
- region.end += offset;
|
|
|
- });
|
|
|
-}
|
|
|
-
|
|
|
-async function dumpPdbtmSampleTrack(params: { pdbEntry: string, labelAsymId: string, side1: "Inside"|"Outside"|null }) {
|
|
|
- const jsvlibResponse = await fetchPdbtmJsvLibDescriptor(params.pdbEntry + '_' + params.labelAsymId);
|
|
|
- await registerRegionDescriptorData(`https://pdbtm.unitmp.org/api/v1/entry/${params.pdbEntry}.json`, params.side1);
|
|
|
- alignJsvLibDescriptorTrack(jsvlibResponse, params);
|
|
|
- const trackData = jsvLibDescriptorToTrackData(jsvlibResponse);
|
|
|
- console.log(`Sample Track of ${params.pdbEntry}_${params.labelAsymId}`);
|
|
|
- console.log(JSON.stringify(trackData));
|
|
|
-}
|
|
|
-
|
|
|
function setFvConfigCallbacks(fvConfig: FeatureViewInterface<LoadMolstarInterface<unknown,unknown>,LoadMolstarReturnType>, modelId: string, labelAsymId: string) {
|
|
|
fvConfig.sequenceSelectionChangeCallback = (plugin: StructureViewerPublicInterface<LoadMolstarInterface<unknown,unknown>,LoadMolstarReturnType>, stateManager: RcsbFvStateManager, sequenceRegion: Array<RcsbFvTrackDataElementInterface>) => {
|
|
|
stateManager.selectionState.clearSelection("select", {modelId: modelId, labelAsymId: labelAsymId});
|
|
@@ -218,7 +148,7 @@ function setFvConfigCallbacks(fvConfig: FeatureViewInterface<LoadMolstarInterfac
|
|
|
|
|
|
}
|
|
|
|
|
|
-function setExternalRowTitleComponent(rows: RcsbFvRowConfigInterface[], titleClick: () => void) {
|
|
|
+function setExternalRowTitleComponent(rows: RcsbFvRowConfigInterface[], titleClick: (e: React.MouseEvent) => void) {
|
|
|
rows.forEach(track => {
|
|
|
if (track.externalRowTitle && (track.externalRowTitle.rowTitleComponent as unknown) == "TmRowTitleComponent") {
|
|
|
track.externalRowTitle.rowTitleComponent = TmRowTitleComponent;
|
|
@@ -230,6 +160,6 @@ function setExternalRowTitleComponent(rows: RcsbFvRowConfigInterface[], titleCli
|
|
|
});
|
|
|
}
|
|
|
|
|
|
-function structureRowClickHandler() {
|
|
|
+function structureRowClickHandler(e: React.MouseEvent) {
|
|
|
console.warn('TODO: implement structureRowClickHandler()');
|
|
|
}
|