Skip to content
Snippets Groups Projects
Commit 3a98db3c authored by Christian Faber's avatar Christian Faber
Browse files

sign error

parent bf7e672f
No related branches found
No related tags found
No related merge requests found
Metadata-Version: 2.1
Name: BioHelpers-FABER
Version: 0.2.9
Version: 0.2.10
Summary: Small collection of useful scripts for the computational work with RNA Data.
Home-page: https://gitlab.jsc.fz-juelich.de/faber1/biohelpers
Author: Christian Faber
......
......@@ -118,7 +118,7 @@ def rmsd_from_rot_tran(
:rtype: float
"""
num_vec = x.shape[1]
intermediate = np.matmul(rot, x) + trans[:, np.newaxis] + y
intermediate = np.matmul(rot, x) + trans[:, np.newaxis] - y
squared = np.trace(np.matmul(np.transpose(intermediate), intermediate)) / num_vec
return np.sqrt(squared)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment