Parcourir la source

Issue #2: fixed compilation errors

cycle20 il y a 2 ans
Parent
commit
8066c15435

+ 0 - 1
src/extensions/tmdet/algorithm.ts

@@ -5,7 +5,6 @@
  * @author Alexander Rose <alexander.rose@weirdbyte.de>
  */
 
-import { Structure, StructureElement } from '../../mol-model/structure';
 import { Vec3 } from '../../mol-math/linear-algebra';
 import { ParamDefinition as PD } from '../../mol-util/param-definition';
 import '../../mol-util/polyfill';

+ 4 - 4
src/extensions/tmdet/behavior.ts

@@ -25,7 +25,7 @@ import { Color } from '../../mol-util/color';
 import { createStructureRepresentationParams } from '../../mol-plugin-state/helpers/structure-representation-params';
 import { PluginUIContext } from '../../mol-plugin-ui/context';
 import { StateObjectSelector } from "../../mol-state/object";
-import { applyTransformations, createMembraneOrientation, getAtomGroupExpression, getChainExpression } from './transformation';
+import { applyTransformations, createMembraneOrientation, getAtomGroupExpression } from './transformation';
 import { PDBTMDescriptor, PDBTMRegion, PMS } from './types';
 
 type StructureComponentType = StateObjectSelector<
@@ -150,9 +150,9 @@ async function createStructureRepresentation(plugin: PluginUIContext, pdbtmDescr
         [196,196,196], // Unknow localization
         [0,255,  0],   // Membrane Inside
     ];
-    const siteDefinitions = pdbtmDescriptor.sites.map(
-        (siteDefinition: any) => siteDefinition.label
-    );
+    // const siteDefinitions = pdbtmDescriptor.sites.map(
+    //     (siteDefinition: any) => siteDefinition.label
+    // );
 
     pdbtmDescriptor.chains.forEach((chain: any) => {
 

+ 0 - 1
src/extensions/tmdet/prop.ts

@@ -74,7 +74,6 @@ export const MembraneOrientationProvider: CustomStructureProperty.Provider<Membr
     },
     isApplicable: (data: Structure) => true,
     obtain: async (ctx: CustomProperty.Context, data: Structure, props: Partial<MembraneOrientationProps>) => {
-        const p = { ...PD.getDefaultValues(MembraneOrientationParams), ...props };
         window.console.log('obtain:: DEBUG', data.customPropertyDescriptors);
         let result = membraneOrientation;
         console.log("RESULT of 'obtain:'", result);

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

@@ -5,7 +5,6 @@ import { PDBTMDescriptor, PDBTMTransformationMatrix, PMS } from './types';
 import { createStructureRepresentationParams } from '../../mol-plugin-state/helpers/structure-representation-params';
 import { StateTransforms } from '../../mol-plugin-state/transforms';
 import { StateObjectRef, StateBuilder } from '../../mol-state';
-import { Color } from '../../mol-util/color';
 import { Expression } from '../../mol-script/language/expression';
 import { MembraneOrientation } from './prop';
 
@@ -37,7 +36,7 @@ export async function applyTransformations(ctx: PluginUIContext, pdbtmDescriptor
  * @param chainId Id of chain to be selected for transformation
  */
  export function red(plugin: PluginUIContext, transformationMatrix: PDBTMTransformationMatrix, chainId: string): void {
-    const color: Color = Color.fromArray([255, 0, 0], 0);
+    // TODO: const color: Color = Color.fromArray([255, 0, 0], 0);
     const query: Expression = getChainExpression(chainId);
 
     let transformation = transformationForStateTransform(transformationMatrix);