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
544f0992
Commit
544f0992
authored
7 years ago
by
Studer Gabriel
Browse files
Options
Downloads
Patches
Plain Diff
forgot to remove print statement
parent
88dc27c5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/mol/alg/tests/test_accessibility.py
+1
-2
1 addition, 2 deletions
modules/mol/alg/tests/test_accessibility.py
with
1 addition
and
2 deletions
modules/mol/alg/tests/test_accessibility.py
+
1
−
2
View file @
544f0992
...
...
@@ -3,6 +3,7 @@ import unittest
import
os
from
ost.bindings
import
naccess
class
AccessibilityContainer
:
def
__init__
(
self
):
self
.
overall_acc
=
None
...
...
@@ -62,7 +63,6 @@ def Compare(acc_one, acc_two):
return
False
for
a
,
b
in
zip
(
acc_one
.
per_atom_acc
,
acc_two
.
per_atom_acc
):
if
abs
(
a
-
b
)
>
0.01
:
print
'
b
'
return
False
# let's check the per atom accessibility when only single chains
...
...
@@ -73,7 +73,6 @@ def Compare(acc_one, acc_two):
for
a
,
b
in
zip
(
acc_one
.
per_atom_acc_single_chain
,
\
acc_two
.
per_atom_acc_single_chain
):
if
abs
(
a
-
b
)
>
0.01
:
print
'
b
'
return
False
return
True
...
...
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