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
84feb016
Commit
84feb016
authored
Aug 29, 2012
by
Peter Eastman
Browse files
Fixed bug where CONECT records were being parsed incorrectly
parent
b8e15090
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
wrappers/python/simtk/openmm/app/internal/pdbstructure.py
wrappers/python/simtk/openmm/app/internal/pdbstructure.py
+2
-2
No files found.
wrappers/python/simtk/openmm/app/internal/pdbstructure.py
View file @
84feb016
...
@@ -165,8 +165,8 @@ class PdbStructure(object):
...
@@ -165,8 +165,8 @@ class PdbStructure(object):
elif
(
pdb_line
.
find
(
"CRYST1"
)
==
0
):
elif
(
pdb_line
.
find
(
"CRYST1"
)
==
0
):
self
.
_unit_cell_dimensions
=
(
float
(
pdb_line
[
6
:
15
]),
float
(
pdb_line
[
15
:
24
]),
float
(
pdb_line
[
24
:
33
]))
*
unit
.
angstroms
self
.
_unit_cell_dimensions
=
(
float
(
pdb_line
[
6
:
15
]),
float
(
pdb_line
[
15
:
24
]),
float
(
pdb_line
[
24
:
33
]))
*
unit
.
angstroms
elif
(
pdb_line
.
find
(
"CONECT"
)
==
0
):
elif
(
pdb_line
.
find
(
"CONECT"
)
==
0
):
atoms
=
[
int
(
pdb_line
[
7
:
1
2
])]
atoms
=
[
int
(
pdb_line
[
6
:
1
1
])]
for
pos
in
(
1
2
,
1
7
,
2
2
,
2
7
):
for
pos
in
(
1
1
,
1
6
,
2
1
,
2
6
):
try
:
try
:
atoms
.
append
(
int
(
pdb_line
[
pos
:
pos
+
5
]))
atoms
.
append
(
int
(
pdb_line
[
pos
:
pos
+
5
]))
except
:
except
:
...
...
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