|
@@ -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
|
|
|
};
|
|
|
|