Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Molstar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michal Malý
Molstar
Commits
72bdd5bc
Commit
72bdd5bc
authored
4 years ago
by
JonStargaryen
Browse files
Options
Downloads
Patches
Plain Diff
asaCutoff param
parent
255cc620
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/mol-model-props/computed/membrane-orientation/ANVIL.ts
+2
-2
2 additions, 2 deletions
src/mol-model-props/computed/membrane-orientation/ANVIL.ts
src/mol-model-props/computed/membrane-orientation/anvil/common.ts
+1
-1
1 addition, 1 deletion
...model-props/computed/membrane-orientation/anvil/common.ts
with
3 additions
and
3 deletions
src/mol-model-props/computed/membrane-orientation/ANVIL.ts
+
2
−
2
View file @
72bdd5bc
...
...
@@ -22,7 +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
'
}),
a
filter
:
PD
.
Numeric
(
40
,
{
min
:
10
,
max
:
100
,
step
:
1
},
{
description
:
'
Absolute ASA cutoff above which residues will be considered
'
})
a
saCutoff
:
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
>
...
...
@@ -81,7 +81,7 @@ function initialize(structure: Structure, props: ANVILProps): ANVILContext {
// keep track of offsets and exposed state to reuse
offsets
[
m
]
=
l
.
element
;
exposed
[
m
]
=
AccessibleSurfaceArea
.
getValue
(
l
,
asa
)
>
props
.
a
filter
;
exposed
[
m
]
=
AccessibleSurfaceArea
.
getValue
(
l
,
asa
)
>
props
.
a
saCutoff
;
m
++
;
}
...
...
This diff is collapsed.
Click to expand it.
src/mol-model-props/computed/membrane-orientation/anvil/common.ts
+
1
−
1
View file @
72bdd5bc
...
...
@@ -14,7 +14,7 @@ export interface ANVILContext {
stepSize
:
number
,
minThickness
:
number
,
maxThickness
:
number
,
a
filter
:
number
,
a
saCutoff
:
number
,
offsets
:
ArrayLike
<
number
>
,
exposed
:
ArrayLike
<
boolean
>
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment