|
@@ -29,7 +29,10 @@ import { fetchHtpDescriptor, fetchPdbtmJsvLibDescriptor, htpDescriptorToTrackDat
|
|
|
import { TmDetRcsbPreset } from "./preset2";
|
|
|
import { TmDetDescriptorCache } from "./tmdet-extension/prop";
|
|
|
|
|
|
-export async function createFeatureViewerConfing(params: { pdbEntry: string, pdbtmEntry: string, htpEntry: string, labelAsymId: string, side1: string }) {
|
|
|
+export async function createFeatureViewerConfing(
|
|
|
+ params: { pdbEntry: string, pdbtmEntry: string, htpEntry: string, labelAsymId: string, side1: string, title: string }
|
|
|
+) {
|
|
|
+
|
|
|
const modelId = `${params.pdbEntry}_model`;
|
|
|
|
|
|
const rowConfig: Array<RcsbFvRowConfigInterface> = [
|
|
@@ -120,7 +123,7 @@ export async function createFeatureViewerConfing(params: { pdbEntry: string, pdb
|
|
|
}
|
|
|
|
|
|
const sequenceConfig = {
|
|
|
- title: "UniTmp example",
|
|
|
+ title: params.title,
|
|
|
subtitle: `HTP entry ${params.htpEntry}`,
|
|
|
config: customConfig
|
|
|
};
|