Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
bb853638
Commit
bb853638
authored
Feb 07, 2015
by
peastman
Browse files
Merge pull request #795 from swails/gbn-chk
Add error checking for the input GB radii in the GBn methods.
parents
3a80b0f1
3db6b8ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
wrappers/python/simtk/openmm/app/internal/amber_file_parser.py
...ers/python/simtk/openmm/app/internal/amber_file_parser.py
+12
-0
No files found.
wrappers/python/simtk/openmm/app/internal/amber_file_parser.py
View file @
bb853638
...
@@ -564,6 +564,12 @@ class PrmtopLoader(object):
...
@@ -564,6 +564,12 @@ class PrmtopLoader(object):
screen
[
i
]
=
0.602256336067
screen
[
i
]
=
0.602256336067
else
:
else
:
screen
[
i
]
=
0.5
screen
[
i
]
=
0.5
# radii is currently in Angstroms right now. GBn lookup tables
# only support radii between 1.0 and 2.0
if
radii
[
i
]
<
1.0
or
radii
[
i
]
>
2.0
:
raise
ValueError
(
'GBn requires intrinsic radii between 1 and '
'2 Angstroms (%.3f found for atom %d)'
%
(
radii
[
i
],
i
))
if
gbmodel
==
'GBn2'
:
if
gbmodel
==
'GBn2'
:
if
elements
is
None
:
if
elements
is
None
:
raise
Exception
(
'GBn2 model requires element information'
)
raise
Exception
(
'GBn2 model requires element information'
)
...
@@ -598,6 +604,12 @@ class PrmtopLoader(object):
...
@@ -598,6 +604,12 @@ class PrmtopLoader(object):
alpha
[
i
]
=
1.0
alpha
[
i
]
=
1.0
beta
[
i
]
=
0.8
beta
[
i
]
=
0.8
gamma
[
i
]
=
4.85
gamma
[
i
]
=
4.85
# radii is currently in Angstroms right now. GBn lookup tables
# only support radii between 1.0 and 2.0
if
radii
[
i
]
<
1.0
or
radii
[
i
]
>
2.0
:
raise
ValueError
(
'GBn2 requires intrinsic radii between 1 and '
'2 Angstroms (%.3f found for atom %d)'
%
(
radii
[
i
],
i
))
lengthConversionFactor
=
units
.
angstrom
.
conversion_factor_to
(
units
.
nanometer
)
lengthConversionFactor
=
units
.
angstrom
.
conversion_factor_to
(
units
.
nanometer
)
if
gbmodel
==
'GBn2'
:
if
gbmodel
==
'GBn2'
:
for
rad
,
scr
,
alp
,
bet
,
gam
in
zip
(
radii
,
screen
,
alpha
,
beta
,
gamma
):
for
rad
,
scr
,
alp
,
bet
,
gam
in
zip
(
radii
,
screen
,
alpha
,
beta
,
gamma
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment