Pārlūkot izejas kodu

Issue #2: fixed double cartoon

cycle20 2 gadi atpakaļ
vecāks
revīzija
e586c0c80d

+ 1 - 2
src/extensions/tmdet/labeling.ts

@@ -7,10 +7,9 @@
 
 import { DebugUtil } from '../../apps/tm-viewer';
 import { CustomElementProperty } from '../../mol-model-props/common/custom-element-property';
-import { Model, ElementIndex, StructureElement } from '../../mol-model/structure';
+import { Model, ElementIndex } 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';

+ 1 - 8
src/extensions/tmdet/transformation.ts

@@ -62,14 +62,7 @@ export function transformWholeModel(plugin: PluginUIContext, membraneMatrix: PDB
         update
             .apply(StateTransforms.Model.TransformStructureConformation, {
                 "transform": { name: "matrix", params: { data: membraneTransformation, transpose: false } }
-            })
-            .apply(
-                StateTransforms.Representation.StructureRepresentation3D,
-                createStructureRepresentationParams(plugin, structure.obj?.data, {
-                    type: 'cartoon',
-                    color: TmDetColorThemeProvider.name as any //, colorParams: { pdbtmDescriptor }
-                })
-            );
+            });
         update.commit();
     });
 }