algorithm.ts 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  6. */
  7. /**
  8. * Copyright (C) 2022, Protein Bioinformatics Research Group, RCNS
  9. *
  10. * Licensed under CC BY-NC 4.0, see LICENSE file for more info.
  11. *
  12. * @author Gabor Tusnady <tusnady.gabor@ttk.hu>
  13. * @author Csongor Gerdan <gerdan.csongor@ttk.hu>
  14. */
  15. import { Vec3 } from '../../mol-math/linear-algebra';
  16. import { ParamDefinition as PD } from '../../mol-util/param-definition';
  17. import '../../mol-util/polyfill';
  18. export const TMDETParams = {
  19. numberOfSpherePoints: PD.Numeric(140, { min: 35, max: 700, step: 1 }, { description: 'Number of spheres/directions to test for membrane placement. Original value is 350.' }),
  20. stepSize: PD.Numeric(1, { min: 0.25, max: 4, step: 0.25 }, { description: 'Thickness of membrane slices that will be tested' }),
  21. minThickness: PD.Numeric(20, { min: 10, max: 30, step: 1}, { description: 'Minimum membrane thickness used during refinement' }),
  22. maxThickness: PD.Numeric(40, { min: 30, max: 50, step: 1}, { description: 'Maximum membrane thickness used during refinement' }),
  23. adjust: PD.Numeric(14, { min: 0, max: 30, step: 1 }, { description: 'Minimum length of membrane-spanning regions (original values: 14 for alpha-helices and 5 for beta sheets). Set to 0 to not optimize membrane thickness.' }),
  24. };
  25. export type TMDETParams = typeof TMDETParams
  26. export type TMDETProps = PD.Values<TMDETParams>
  27. const v3dot = Vec3.dot;
  28. export function isInMembranePlane(testPoint: Vec3, normalVector: Vec3, planePoint1: Vec3, planePoint2: Vec3): boolean {
  29. const d1 = -v3dot(normalVector, planePoint1);
  30. const d2 = -v3dot(normalVector, planePoint2);
  31. return _isInMembranePlane(testPoint, normalVector, Math.min(d1, d2), Math.max(d1, d2));
  32. }
  33. function _isInMembranePlane(testPoint: Vec3, normalVector: Vec3, min: number, max: number): boolean {
  34. const d = -v3dot(normalVector, testPoint);
  35. return d > min && d < max;
  36. }