@rcsb/rcsb-saguaro-3d
Version:
RCSB Molstar/Saguaro Web App
20 lines (19 loc) • 786 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RcsbSuperpositionRepresentationPreset = void 0;
const tslib_1 = require("tslib");
const representation_preset_1 = require("molstar/lib/mol-plugin-state/builder/structure/representation-preset");
exports.RcsbSuperpositionRepresentationPreset = (0, representation_preset_1.StructureRepresentationPresetProvider)({
id: 'preset-superposition-representation-rcsb',
display: {
group: 'Superposition',
name: 'Alignment',
description: 'Show representations based on the structural alignment data.'
},
params: () => ({}),
apply(ref, params, plugin) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
return {};
});
}
});