backbone.ts 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /**
  2. * Copyright (c) 2018-2021 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. */
  6. import { PolymerBackboneCylinderVisual, PolymerBackboneCylinderParams } from '../visual/polymer-backbone-cylinder';
  7. import { ParamDefinition as PD } from '../../../mol-util/param-definition';
  8. import { UnitsRepresentation } from '../units-representation';
  9. import { StructureRepresentation, StructureRepresentationProvider, StructureRepresentationStateBuilder } from '../representation';
  10. import { Representation, RepresentationContext, RepresentationParamsGetter } from '../../../mol-repr/representation';
  11. import { ThemeRegistryContext } from '../../../mol-theme/theme';
  12. import { Structure } from '../../../mol-model/structure';
  13. import { PolymerBackboneSphereParams, PolymerBackboneSphereVisual } from '../visual/polymer-backbone-sphere';
  14. import { PolymerGapParams, PolymerGapVisual } from '../visual/polymer-gap-cylinder';
  15. import { BaseGeometry } from '../../../mol-geo/geometry/base';
  16. const BackboneVisuals = {
  17. 'polymer-backbone-cylinder': (ctx: RepresentationContext, getParams: RepresentationParamsGetter<Structure, PolymerBackboneCylinderParams>) => UnitsRepresentation('Polymer backbone cylinder', ctx, getParams, PolymerBackboneCylinderVisual),
  18. 'polymer-backbone-sphere': (ctx: RepresentationContext, getParams: RepresentationParamsGetter<Structure, PolymerBackboneSphereParams>) => UnitsRepresentation('Polymer backbone sphere', ctx, getParams, PolymerBackboneSphereVisual),
  19. 'polymer-gap': (ctx: RepresentationContext, getParams: RepresentationParamsGetter<Structure, PolymerGapParams>) => UnitsRepresentation('Polymer gap cylinder', ctx, getParams, PolymerGapVisual),
  20. };
  21. export const BackboneParams = {
  22. ...PolymerBackboneSphereParams,
  23. ...PolymerBackboneCylinderParams,
  24. ...PolymerGapParams,
  25. sizeAspectRatio: PD.Numeric(1, { min: 0.1, max: 3, step: 0.1 }),
  26. visuals: PD.MultiSelect(['polymer-backbone-cylinder', 'polymer-backbone-sphere', 'polymer-gap'], PD.objectToOptions(BackboneVisuals)),
  27. bumpFrequency: PD.Numeric(0, { min: 0, max: 10, step: 0.1 }, BaseGeometry.ShadingCategory),
  28. colorMode: PD.Select('default', PD.arrayToOptions(['default', 'interpolate'] as const), { ...BaseGeometry.ShadingCategory, isHidden: true }),
  29. };
  30. export type BackboneParams = typeof BackboneParams
  31. export function getBackboneParams(ctx: ThemeRegistryContext, structure: Structure) {
  32. const params = PD.clone(BackboneParams);
  33. let hasGaps = false;
  34. structure.units.forEach(u => {
  35. if (!hasGaps && u.gapElements.length) hasGaps = true;
  36. });
  37. params.visuals.defaultValue = ['polymer-backbone-cylinder', 'polymer-backbone-sphere'];
  38. if (hasGaps) params.visuals.defaultValue.push('polymer-gap');
  39. return params;
  40. }
  41. export type BackboneRepresentation = StructureRepresentation<BackboneParams>
  42. export function BackboneRepresentation(ctx: RepresentationContext, getParams: RepresentationParamsGetter<Structure, BackboneParams>): BackboneRepresentation {
  43. return Representation.createMulti('Backbone', ctx, getParams, StructureRepresentationStateBuilder, BackboneVisuals as unknown as Representation.Def<Structure, BackboneParams>);
  44. }
  45. export const BackboneRepresentationProvider = StructureRepresentationProvider({
  46. name: 'backbone',
  47. label: 'Backbone',
  48. description: 'Displays polymer backbone with cylinders and spheres.',
  49. factory: BackboneRepresentation,
  50. getParams: getBackboneParams,
  51. defaultValues: PD.getDefaultValues(BackboneParams),
  52. defaultColorTheme: { name: 'chain-id' },
  53. defaultSizeTheme: { name: 'uniform' },
  54. isApplicable: (structure: Structure) => structure.polymerResidueCount > 0,
  55. });