|
@@ -53,7 +53,7 @@ import { AssemblySymmetry } from 'molstar/lib/extensions/rcsb/assembly-symmetry/
|
|
|
import { wwPDBChemicalComponentDictionary } from 'molstar/lib/extensions/wwpdb/ccd/behavior';
|
|
|
import { ChemicalCompontentTrajectoryHierarchyPreset } from 'molstar/lib/extensions/wwpdb/ccd/representation';
|
|
|
import { StateTransforms } from 'molstar/lib/mol-plugin-state/transforms';
|
|
|
-import { TMDETMembraneOrientation, loadWithUNITMPMembraneRepresentation } from '../tmdet-extension/behavior';
|
|
|
+import { TMDETMembraneOrientation, registerRegionDescriptor } from '../tmdet-extension/behavior';
|
|
|
|
|
|
/** package version, filled in at bundle build time */
|
|
|
declare const __RCSB_MOLSTAR_VERSION__: string;
|
|
@@ -345,12 +345,10 @@ export class Viewer {
|
|
|
loadStructureFromUrl<P, S>(url: string, format: BuiltInTrajectoryFormat, isBinary: boolean, config?: {props?: PresetProps & { dataLabel?: string }; matrix?: Mat4; reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P}) {
|
|
|
console.log('RCSB loadStructureFromUrl II', this.customState);
|
|
|
const pdbId = '1afo';
|
|
|
- //return this.customState.modelLoader.load({ fileOrUrl: url, format, isBinary }, config?.props, config?.matrix, config?.reprProvider, config?.params);
|
|
|
- return loadWithUNITMPMembraneRepresentation(this._plugin, {
|
|
|
- structureUrl: `https://www.ebi.ac.uk/pdbe/entry-files/download/${pdbId}_updated.cif`,
|
|
|
- regionDescriptorUrl: `/${pdbId}.json`,
|
|
|
- side1: "Periplasm"
|
|
|
- });
|
|
|
+ const descriptorUrl = `/${pdbId}.json`;
|
|
|
+ registerRegionDescriptor(this._plugin, descriptorUrl, "Inside");
|
|
|
+
|
|
|
+ return this.customState.modelLoader.load({ fileOrUrl: url, format, isBinary }, config?.props, config?.matrix, config?.reprProvider, config?.params);
|
|
|
}
|
|
|
|
|
|
loadSnapshotFromUrl(url: string, type: PluginState.SnapshotType) {
|