|
@@ -7,10 +7,14 @@
|
|
|
|
|
|
import { DebugUtil } from '../../apps/tm-viewer';
|
|
|
import { CustomElementProperty } from '../../mol-model-props/common/custom-element-property';
|
|
|
-import { Model, ElementIndex } from '../../mol-model/structure';
|
|
|
+import { Model, ElementIndex, StructureElement } from '../../mol-model/structure';
|
|
|
+import { Loci } from '../../mol-model/loci';
|
|
|
+import { LociLabel, LociLabelProvider } from '../../mol-plugin-state/manager/loci-label';
|
|
|
+import { Representation } from '../../mol-repr/representation';
|
|
|
import { TmDetDescriptorCache } from './prop';
|
|
|
import { createResidueListsPerChain } from './tmdet-color-theme';
|
|
|
import { ChainList } from './types';
|
|
|
+import { OrderedSet } from '../../mol-data/int';
|
|
|
|
|
|
const siteLabels = [
|
|
|
"Side1",
|
|
@@ -76,3 +80,17 @@ export const LabeledResidues = CustomElementProperty.create<number>({
|
|
|
return siteLabels[e];
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
+
|
|
|
+export const TmLabelProvider: LociLabelProvider = {
|
|
|
+ label: (loci: Loci): LociLabel => {
|
|
|
+ if (loci.kind == 'element-loci') {
|
|
|
+ DebugUtil.log('LabelProvider:', loci.elements[0].unit.model.atomicHierarchy.chains.auth_asym_id.toArray());
|
|
|
+ DebugUtil.log('LabelProvider:', loci.elements[0].unit.model.atomicHierarchy.chains.label_asym_id.toArray());
|
|
|
+ DebugUtil.log('LabelProvider:', loci.elements[0].unit.model.atomicHierarchy.chains.label_entity_id.toArray());
|
|
|
+ DebugUtil.log('IsLocation:', loci.structure.elementLocations());
|
|
|
+ DebugUtil.log('start:', OrderedSet.start(loci.elements[0].indices));
|
|
|
+ }
|
|
|
+ return "hello";
|
|
|
+ }
|
|
|
+}
|