Skip to content
Snippets Groups Projects
Commit 544f0992 authored by Studer Gabriel's avatar Studer Gabriel
Browse files

forgot to remove print statement

parent 88dc27c5
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ import unittest ...@@ -3,6 +3,7 @@ import unittest
import os import os
from ost.bindings import naccess from ost.bindings import naccess
class AccessibilityContainer: class AccessibilityContainer:
def __init__(self): def __init__(self):
self.overall_acc = None self.overall_acc = None
...@@ -62,7 +63,6 @@ def Compare(acc_one, acc_two): ...@@ -62,7 +63,6 @@ def Compare(acc_one, acc_two):
return False return False
for a,b in zip(acc_one.per_atom_acc, acc_two.per_atom_acc): for a,b in zip(acc_one.per_atom_acc, acc_two.per_atom_acc):
if abs(a - b) > 0.01: if abs(a - b) > 0.01:
print 'b'
return False return False
# let's check the per atom accessibility when only single chains # let's check the per atom accessibility when only single chains
...@@ -73,7 +73,6 @@ def Compare(acc_one, acc_two): ...@@ -73,7 +73,6 @@ def Compare(acc_one, acc_two):
for a,b in zip(acc_one.per_atom_acc_single_chain, \ for a,b in zip(acc_one.per_atom_acc_single_chain, \
acc_two.per_atom_acc_single_chain): acc_two.per_atom_acc_single_chain):
if abs(a - b) > 0.01: if abs(a - b) > 0.01:
print 'b'
return False return False
return True return True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment