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
a52611a8
Commit
a52611a8
authored
Feb 19, 2019
by
tic20
Browse files
Ensuring opened files are properly closed
parent
bd788d90
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
36 deletions
+40
-36
wrappers/python/simtk/openmm/app/gromacsgrofile.py
wrappers/python/simtk/openmm/app/gromacsgrofile.py
+34
-33
wrappers/python/simtk/openmm/app/pdbxfile.py
wrappers/python/simtk/openmm/app/pdbxfile.py
+1
-0
wrappers/python/tests/TestAmberPrmtopFile.py
wrappers/python/tests/TestAmberPrmtopFile.py
+2
-1
wrappers/python/tests/TestPdbFile.py
wrappers/python/tests/TestPdbFile.py
+3
-2
No files found.
wrappers/python/simtk/openmm/app/gromacsgrofile.py
View file @
a52611a8
...
...
@@ -133,7 +133,8 @@ class GromacsGroFile(object):
xyz
=
[]
ln
=
0
frame
=
0
for
line
in
open
(
file
):
with
open
(
file
)
as
grofile
:
for
line
in
grofile
:
if
ln
==
0
:
comms
.
append
(
line
.
strip
())
elif
ln
==
1
:
...
...
wrappers/python/simtk/openmm/app/pdbxfile.py
View file @
a52611a8
...
...
@@ -75,6 +75,7 @@ class PDBxFile(object):
reader
=
PdbxReader
(
inputFile
)
data
=
[]
reader
.
read
(
data
)
inputFile
.
close
()
block
=
data
[
0
]
# Build the topology.
...
...
wrappers/python/tests/TestAmberPrmtopFile.py
View file @
a52611a8
...
...
@@ -293,7 +293,8 @@ class TestAmberPrmtopFile(unittest.TestCase):
context
=
Context
(
system
,
integrator
,
Platform
.
getPlatformByName
(
"Reference"
))
context
.
setPositions
(
pdb
.
positions
)
state1
=
context
.
getState
(
getForces
=
True
)
state2
=
XmlSerializer
.
deserialize
(
open
(
'systems/alanine-dipeptide-implicit-forces/'
+
file
[
i
]
+
'.xml'
).
read
())
with
open
(
'systems/alanine-dipeptide-implicit-forces/'
+
file
[
i
]
+
'.xml'
)
as
infile
:
state2
=
XmlSerializer
.
deserialize
(
infile
.
read
())
for
f1
,
f2
,
in
zip
(
state1
.
getForces
().
value_in_unit
(
kilojoules_per_mole
/
nanometer
),
state2
.
getForces
().
value_in_unit
(
kilojoules_per_mole
/
nanometer
)):
diff
=
norm
(
f1
-
f2
)
self
.
assertTrue
(
diff
<
0.1
or
diff
/
norm
(
f1
)
<
1e-4
)
...
...
wrappers/python/tests/TestPdbFile.py
View file @
a52611a8
...
...
@@ -67,7 +67,8 @@ class TestPdbFile(unittest.TestCase):
def
test_BinaryStream
(
self
):
"""Test reading a stream that was opened in binary mode."""
pdb
=
PDBFile
(
open
(
'systems/triclinic.pdb'
,
'rb'
))
with
open
(
'systems/triclinic.pdb'
,
'rb'
)
as
infile
:
pdb
=
PDBFile
(
infile
)
self
.
assertEqual
(
len
(
pdb
.
positions
),
8
)
def
test_ExtraParticles
(
self
):
...
...
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