StructurePreset 531 B

12345678910111213141516
  1. import {StructureRepresentationPresetProvider} from "molstar/lib/mol-plugin-state/builder/structure/representation-preset";
  2. export const RcsbSuperpositionRepresentationPreset = StructureRepresentationPresetProvider({
  3. id: 'preset-superposition-representation-rcsb',
  4. display: {
  5. group: 'Superposition',
  6. name: 'Alignment',
  7. description: 'Show representations based on the structural alignment data.'
  8. },
  9. params: () => ({
  10. }),
  11. async apply(ref, params, plugin) {
  12. return {};
  13. }
  14. })