tmdet-color-theme.ts 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. import { StructureElement, Unit } from '../../mol-model/structure';
  2. import { ColorTheme } from '../../mol-theme/color';
  3. import { ThemeDataContext } from '../../mol-theme/theme';
  4. import { Color } from '../../mol-util/color';
  5. import { ColorNames } from '../../mol-util/color/names';
  6. import { ParamDefinition as PD } from '../../mol-util/param-definition';
  7. import { Location } from '../../mol-model/location';
  8. import { PDBTMChain } from './types';
  9. export type TmDetColorThemeParams = {
  10. pdbtmDescriptor: any
  11. };
  12. export function TmDetColorTheme(
  13. ctx: ThemeDataContext,
  14. props: PD.Values<TmDetColorThemeParams>
  15. ): ColorTheme<TmDetColorThemeParams> {
  16. console.log('ColorTheme CTX', ctx);
  17. const descriptorChains = props.pdbtmDescriptor.chains as PDBTMChain[];
  18. console.log('ColorTheme PROPS', descriptorChains);
  19. return {
  20. factory: TmDetColorTheme,
  21. granularity: 'group', //'residue' as any,
  22. color: (location: Location) => getColor(location, descriptorChains),
  23. props: props,
  24. description: 'TMDet...',
  25. };
  26. }
  27. const DefaultResidueColor = ColorNames.black;
  28. //TODO: colors of not curated sites
  29. const siteColors = [
  30. Color.fromArray([255,100,100], 0), // Side1
  31. Color.fromArray([100,100,255], 0), // Side2
  32. Color.fromArray([255,255, 0], 0), // TM alpha
  33. Color.fromArray([255,255, 0], 0), // TM beta
  34. Color.fromArray([255,127, 0], 0), // TM re-entrant loop
  35. Color.fromArray([0,255, 0], 0), // Interfacial Helix
  36. Color.fromArray([196,196,196], 0), // Unknow localization
  37. Color.fromArray([0,255, 0], 0) // Membrane Inside
  38. ];
  39. function getColor(location: Location, chains: PDBTMChain[]): Color {
  40. let color = DefaultResidueColor;
  41. // TODO: How to solve cases when chain operation occurs?
  42. const chainList = createResidueListsPerChain(chains);
  43. if (StructureElement.Location.is(location) && Unit.isAtomic(location.unit)) {
  44. const atomicHierarchy = location.unit.model.atomicHierarchy;
  45. const residueIdx = StructureElement.residueIndex(location);
  46. const chainIdx = StructureElement.Location.chainIndex(location);
  47. const authId = atomicHierarchy.residues.auth_seq_id.value(residueIdx).toString();
  48. const chainId = atomicHierarchy.chains.auth_asym_id.value(chainIdx).toString();
  49. color = residueColor(chainList, chainId, authId);
  50. console.log(`chain: ${chainId} res: ${authId}`);
  51. }
  52. return color;
  53. }
  54. type ChainList = {
  55. chainId: string,
  56. residues: {
  57. authId: string|undefined,
  58. siteId: number
  59. }[]
  60. }[];
  61. function createResidueListsPerChain(chains: PDBTMChain[]) {
  62. const chainList: ChainList = [];
  63. chains.forEach((chain: PDBTMChain) => {
  64. chainList.push({ chainId: chain.chain_label, residues: [] });
  65. chain.residues.forEach((residue) => {
  66. chainList[chainList.length - 1].residues.push({
  67. authId: residue.pdb_res_label,
  68. siteId: residue.site_data![0].site_id_ref - 1
  69. });
  70. });
  71. });
  72. return chainList;
  73. }
  74. function residueColor(chains: ChainList, chainId: string, residueId: string): Color {
  75. let color = DefaultResidueColor;
  76. const chain = chains.filter((chain) => chain.chainId === chainId)[0];
  77. if (chain) {
  78. const residue = chain.residues.filter((res) => res.authId === residueId)[0];
  79. if (residue) {
  80. color = siteColors[residue.siteId];
  81. }
  82. }
  83. return color;
  84. }
  85. // Provider
  86. export const TmDetColorThemeProvider: ColorTheme.Provider<TmDetColorThemeParams, 'tmdet-custom-color-theme'> = {
  87. name: 'tmdet-custom-color-theme',
  88. label: 'TMDet Topology Theme',
  89. category: 'TMDet',
  90. factory: TmDetColorTheme,
  91. getParams: () => ({ pdbtmDescriptor: { isOptional: true } }),
  92. defaultValues: { pdbtmDescriptor: undefined },
  93. isApplicable: () => true,
  94. };