Skip to content

Commit

Permalink
Removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
brianjimenez committed Dec 11, 2018
1 parent af1fb97 commit 83164be
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lightdock/prep/poses.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,17 @@ def get_quaternion_for_restraint(rec_residue, lig_residue, tx, ty, tz, rt, lt):
rx = r_ca.x + rt[0]
ry = r_ca.y + rt[1]
rz = r_ca.z + rt[2]
print rx, ry, rz

lx = l_ca.x + lt[0]
ly = l_ca.y + lt[1]
lz = l_ca.z + lt[2]
print lx, ly, lz

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

q = quaternion_from_vectors(a, b)
#print q
#print "***************"

return q


Expand Down

0 comments on commit 83164be

Please sign in to comment.