coloring.ts 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * Copyright (c) 2019-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. import { CustomElementProperty } from '../../mol-model-props/common/custom-element-property';
  8. import { Model, ElementIndex } from '../../mol-model/structure';
  9. import { Color } from '../../mol-util/color';
  10. const ColorMap = [
  11. Color(0xff0000),
  12. Color(0x0000ff),
  13. Color(0xffff00)
  14. ];
  15. export const StripedResidues = CustomElementProperty.create<number>({
  16. label: 'TMDet Topology Colors',
  17. name: 'tmdet-topology-colors',
  18. getData(model: Model) {
  19. console.log('getData', model.atomicHierarchy.residueAtomSegments);
  20. console.log('getData: auth_comp_id', model.atomicHierarchy.atoms.auth_comp_id.toArray());
  21. const map = new Map<ElementIndex, number>();
  22. const residueIndex = model.atomicHierarchy.residueAtomSegments.index;
  23. for (let i = 0, _i = model.atomicHierarchy.atoms._rowCount; i < _i; i++) {
  24. const residueId = residueIndex[i];
  25. const value = (residueId === 310) ? 2 : residueId % 2;
  26. map.set(i as ElementIndex, value);
  27. }
  28. console.log('map', map);
  29. return { value: map };
  30. },
  31. coloring: {
  32. getColor(e) { return ColorMap[e]; },
  33. defaultColor: Color(0x777777)
  34. },
  35. getLabel(e) {
  36. return e === 0 ? 'Odd stripe' : 'Even stripe';
  37. }
  38. });