Skip to content

Commit 83164be

Browse files
committed
Removed prints
1 parent af1fb97 commit 83164be

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lightdock/prep/poses.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -79,20 +79,17 @@ def get_quaternion_for_restraint(rec_residue, lig_residue, tx, ty, tz, rt, lt):
7979
rx = r_ca.x + rt[0]
8080
ry = r_ca.y + rt[1]
8181
rz = r_ca.z + rt[2]
82-
print rx, ry, rz
8382

8483
lx = l_ca.x + lt[0]
8584
ly = l_ca.y + lt[1]
8685
lz = l_ca.z + lt[2]
87-
print lx, ly, lz
8886

8987
# Define restraints vectors
9088
a = np.array([lx, ly, lz])
9189
b = np.array([rx - tx, ry - ty, rz - tz])
9290

9391
q = quaternion_from_vectors(a, b)
94-
#print q
95-
#print "***************"
92+
9693
return q
9794

9895

0 commit comments

Comments
 (0)