|
@@ -10,9 +10,9 @@ import { CustomElementProperty } from '../../mol-model-props/common/custom-eleme
|
|
|
import { Model, ElementIndex } from '../../mol-model/structure';
|
|
|
import { Loci } from '../../mol-model/loci';
|
|
|
import { LociLabel, LociLabelProvider } from '../../mol-plugin-state/manager/loci-label';
|
|
|
-import { TmDetDescriptorCache } from './prop';
|
|
|
+import { TmDetChainListCache, TmDetDescriptorCache } from './prop';
|
|
|
import { createResidueListsPerChain } from './tmdet-color-theme';
|
|
|
-import { ChainList } from './types';
|
|
|
+import { ChainList, getResidue } from './types';
|
|
|
import { OrderedSet } from '../../mol-data/int';
|
|
|
|
|
|
const siteLabels = [
|
|
@@ -32,45 +32,46 @@ export const LabeledResidues = CustomElementProperty.create<number>({
|
|
|
label: 'TMDet Topology Site Labels',
|
|
|
name: 'tmdet-topology-site-labels',
|
|
|
getData(model: Model) {
|
|
|
- DebugUtil.log('start getData', model.label, model.entryId);
|
|
|
+ const pdbId = model.entryId;
|
|
|
+ DebugUtil.log('start getData', model.label, pdbId);
|
|
|
|
|
|
const map = new Map<ElementIndex, number>();
|
|
|
- const descriptor = TmDetDescriptorCache.get(model.entryId);
|
|
|
+ const descriptor = TmDetDescriptorCache.get(pdbId);
|
|
|
if (!descriptor) {
|
|
|
return { value: map };
|
|
|
}
|
|
|
|
|
|
- const getSiteId = function(chains: ChainList, residueId: string): number {
|
|
|
- // TODO: integrate with the coloring version
|
|
|
- let label = DefaultResidueLabel;
|
|
|
+ // TODO: integrate with the coloring version
|
|
|
+ const getSiteId = function(chains: ChainList, chainId: string, residueId: string): number {
|
|
|
+ let siteId = DefaultResidueLabel;
|
|
|
|
|
|
- for (let chain of chains) {
|
|
|
- const residue = chain.residues.filter((res) => res.authId === residueId)[0];
|
|
|
- if (residue) {
|
|
|
- label = residue.siteId;
|
|
|
- break;
|
|
|
- }
|
|
|
+ const residue = getResidue(chains, chainId, residueId);
|
|
|
+ if (residue) {
|
|
|
+ siteId = residue.siteId;
|
|
|
}
|
|
|
- //const chain = chains.filter((chain) => chain.chainId === chainId)[0];
|
|
|
- // if (chain) {
|
|
|
- // const residue = chain.residues.filter((res) => res.authId === residueId)[0];
|
|
|
- // if (residue) {
|
|
|
- // label = siteLabels[residue.siteId];
|
|
|
- // }
|
|
|
- // }
|
|
|
|
|
|
- return label;
|
|
|
+ return siteId;
|
|
|
};
|
|
|
|
|
|
- const chainList = createResidueListsPerChain(descriptor.chains);
|
|
|
+ let chainList = TmDetChainListCache.get(pdbId);
|
|
|
+ if (!chainList) {
|
|
|
+ chainList = createResidueListsPerChain(descriptor.chains);
|
|
|
+ TmDetChainListCache.set(pdbId, chainList);
|
|
|
+ }
|
|
|
DebugUtil.log('getData', model.atomicHierarchy.chainAtomSegments);
|
|
|
// DebugUtil.log('getData: auth_comp_id', model.atomicHierarchy.atoms.auth_comp_id.toArray());
|
|
|
const residueIndex = model.atomicHierarchy.residueAtomSegments.index;
|
|
|
+ const chainIndex = model.atomicHierarchy.chainAtomSegments.index;
|
|
|
for (let i = 0, _i = model.atomicHierarchy.atoms._rowCount; i < _i; i++) {
|
|
|
const residueIdx = residueIndex[i];
|
|
|
- const authId = model.atomicHierarchy.residues.auth_seq_id.value(residueIdx).toString();
|
|
|
+ const chainIdx = chainIndex[i];
|
|
|
+ const residueAuthId = model.atomicHierarchy.residues.auth_seq_id.value(residueIdx).toString();
|
|
|
+ const residueName = model.atomicHierarchy.atoms.auth_comp_id.value(i).toString();
|
|
|
+ const chainAuthId = model.atomicHierarchy.chains.auth_asym_id.value(chainIdx).toString();
|
|
|
+ const chainLabel = model.atomicHierarchy.chains.label_asym_id.value(chainIdx).toString();
|
|
|
+ //DebugUtil.log(`${i} ${residueIdx} ${residueName} ${residueAuthId} ${chainIdx} ${chainAuthId} ${chainLabel}`);
|
|
|
|
|
|
- map.set(i as ElementIndex, getSiteId(chainList, authId));
|
|
|
+ map.set(i as ElementIndex, getSiteId(chainList, chainAuthId, residueAuthId));
|
|
|
}
|
|
|
DebugUtil.log('end of getData');
|
|
|
return { value: map };
|
|
@@ -80,6 +81,17 @@ export const LabeledResidues = CustomElementProperty.create<number>({
|
|
|
}
|
|
|
});
|
|
|
|
|
|
+// function residueLabel(chains: ChainList, chainId: string, residueId: string): string {
|
|
|
+// let label = DefaultResidueLabel;
|
|
|
+
|
|
|
+// const residue = getResidue(chains, chainId, residueId);
|
|
|
+// if (residue) {
|
|
|
+// label = siteLabels[residue.siteId];
|
|
|
+// }
|
|
|
+
|
|
|
+// return color;
|
|
|
+// }
|
|
|
+
|
|
|
|
|
|
export const TmLabelProvider: LociLabelProvider = {
|
|
|
label: (loci: Loci): LociLabel => {
|