فهرست منبع

Issue #820: fixed multiselection bug - supplied missing asymid param

cycle20 1 سال پیش
والد
کامیت
1b0722eefe
2فایلهای تغییر یافته به همراه14 افزوده شده و 4 حذف شده
  1. 12 4
      src/examples/assembly-tm/FeatureViewConfig.ts
  2. 2 0
      src/examples/assembly-tm/index.html

+ 12 - 4
src/examples/assembly-tm/FeatureViewConfig.ts

@@ -27,9 +27,17 @@ import { fetchHtpDescriptor, fetchPdbtmJsvLibDescriptor, htpDescriptorToTrackDat
 import { TmDetRcsbPreset } from "./TmTrajectoryHierarchyPreset";
 import { TmDetDescriptorCache } from "./tmdet-extension/prop";
 
-export async function createFeatureViewerConfing(
-    params: { pdbEntry: string, pdbtmEntry: string, htpEntry: string, labelAsymId: string, side1: string, title: string, fvConfigData?: any },
-) {
+export type TmFvConfigParams = {
+    pdbEntry: string,
+    pdbtmEntry: string,
+    htpEntry: string,
+    labelAsymId: string,
+    side1: string,
+    title: string,
+    subtitle?: string,
+    fvConfigData?: any
+};
+export async function createFeatureViewerConfing(params: TmFvConfigParams) {
 
     const modelId = `${params.pdbEntry}_model`;
 
@@ -130,7 +138,7 @@ export async function createFeatureViewerConfing(
 
     const sequenceConfig = {
         title: params.title,
-        subtitle: `HTP entry ${params.htpEntry}`,
+        subtitle: params.subtitle ?? '',
         config: customConfig
     };
 

+ 2 - 0
src/examples/assembly-tm/index.html

@@ -7,8 +7,10 @@
     <script defer type="module">
       tmSaguaro.createViewer({
           title: 'TmSaguaro Example',
+          subtitle: 'ZDH15 data',
           elementId: "tmSaguaro",
           pdbEntry: "7khm",
+          labelAsymId: "A",
           side1: "Inside",
           configData: "./zdh15_saguaro.json"
       });