From f6262f4be534cc5bb9609a14f66e796b9bd16889 Mon Sep 17 00:00:00 2001
From: JonStargaryen <sebastian.bittrich@rcsb.org>
Date: Wed, 27 May 2020 10:28:51 -0700
Subject: [PATCH] remove density param

---
 src/mol-model-props/computed/membrane-orientation/ANVIL.ts     | 3 +--
 .../computed/membrane-orientation/anvil/common.ts              | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/mol-model-props/computed/membrane-orientation/ANVIL.ts b/src/mol-model-props/computed/membrane-orientation/ANVIL.ts
index 23f1d0d82..f46710b1b 100644
--- a/src/mol-model-props/computed/membrane-orientation/ANVIL.ts
+++ b/src/mol-model-props/computed/membrane-orientation/ANVIL.ts
@@ -22,8 +22,7 @@ export const ANVILParams = {
     stepSize: PD.Numeric(1, { min: 0.25, max: 4, step: 0.25 }, { description: 'Thickness of membrane slices that will be tested' }),
     minThickness: PD.Numeric(20, { min: 10, max: 30, step: 1}, { description: 'Minimum membrane thickness used during refinement' }),
     maxThickness: PD.Numeric(40, { min: 30, max: 50, step: 1}, { description: 'Maximum membrane thickness used during refinement' }),
-    afilter: PD.Numeric(40, { min: 10, max: 100, step: 1 }, { description: 'Absolute ASA cutoff above which residues will be considered' }),
-    membranePointDensity: PD.Numeric(2, { min: 0.1, max: 10, step: 0.1 }, { description: 'Distance between points representing membrane layer'})
+    afilter: PD.Numeric(40, { min: 10, max: 100, step: 1 }, { description: 'Absolute ASA cutoff above which residues will be considered' })
 };
 export type ANVILParams = typeof ANVILParams
 export type ANVILProps = PD.Values<ANVILParams>
diff --git a/src/mol-model-props/computed/membrane-orientation/anvil/common.ts b/src/mol-model-props/computed/membrane-orientation/anvil/common.ts
index 743c46a46..6803ff00c 100644
--- a/src/mol-model-props/computed/membrane-orientation/anvil/common.ts
+++ b/src/mol-model-props/computed/membrane-orientation/anvil/common.ts
@@ -15,7 +15,6 @@ export interface ANVILContext {
     minThickness: number,
     maxThickness: number,
     afilter: number,
-    membranePointDensity: number,
 
     offsets: ArrayLike<number>,
     exposed: ArrayLike<boolean>,
-- 
GitLab