Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
schwede
openstructure
Commits
104b8d8e
Commit
104b8d8e
authored
5 years ago
by
Studer Gabriel
Browse files
Options
Downloads
Patches
Plain Diff
port hbplus binding to Python 3
parent
a4dbfec1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/bindings/pymod/hbplus.py
+10
-6
10 additions, 6 deletions
modules/bindings/pymod/hbplus.py
with
10 additions
and
6 deletions
modules/bindings/pymod/hbplus.py
+
10
−
6
View file @
104b8d8e
...
...
@@ -8,6 +8,7 @@ from ost import settings
import
subprocess
import
re
import
os
import
shutil
from
ost
import
io
from
ost
import
mol
...
...
@@ -62,20 +63,23 @@ def HBondList(ent, hbplus_bin=None):
"""
full_bin
=
_LocateHBPlus
(
hbplus_bin
)
temp_d
=
tempfile
.
mkdtemp
(
prefix
=
'
hbplus_
'
)
hb_proc
=
subprocess
.
Popen
(
full_bin
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stdin
=
subprocess
.
PIPE
)
file_name
=
os
.
path
.
join
(
temp_d
,
'
ent.pdb
'
)
io
.
SaveEntity
(
ent
,
file_name
)
hb_proc
.
stdin
.
write
(
'
%s
\n
'
%
temp_d
)
hb_proc
.
stdin
.
write
(
'
%s
\n\n
'
%
file_name
)
for
line
in
hb_proc
.
stdout
:
hb_proc
=
subprocess
.
Popen
(
full_bin
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stdin
=
subprocess
.
PIPE
)
hb_proc
.
stdin
.
write
((
'
%s
\n
'
%
temp_d
).
encode
())
hb_proc
.
stdin
.
write
((
'
%s
\n\n
'
%
file_name
).
encode
())
stdout
,
_
=
hb_proc
.
communicate
()
for
line
in
stdout
.
decode
().
splitlines
():
match
=
re
.
match
(
r
'
Configured for (\d+) atoms and\s+(\d+) residues\.
'
,
line
)
if
match
:
assert
ent
.
atom_count
<
int
(
match
.
group
(
1
))
assert
ent
.
residue_count
<
int
(
match
.
group
(
2
))
hb_out
=
open
(
os
.
path
.
join
(
temp_d
,
'
ent.hb2
'
),
'
r
'
)
hbonds
=
_ParseOutput
(
ent
,
hb_out
)
os
.
system
(
'
rm -rf
"
%s
"'
%
temp_d
)
hb_out
.
close
()
shutil
.
rmtree
(
temp_d
)
return
hbonds
def
HBondScore
(
ent1
,
ent2
,
hbplus_bin
=
None
):
...
...
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