1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*******************************************************************************
* -/_|:|_|_\-
*
* File: qcprot.h
*
* Function: Rapid calculation of the least-squares rotation using a
* quaternion-based characteristic polynomial and
* a cofactor matrix
*
* Author(s): Douglas L. Theobald
* Department of Biochemistry
* MS 009
* Brandeis University
* 415 South St
* Waltham, MA 02453
* USA
*
* dtheobald@brandeis.edu
*
* Pu Liu
* Johnson & Johnson Pharmaceutical Research and Development, L.L.C.
* 665 Stockton Drive
* Exton, PA 19341
* USA
*
* pliu24@its.jnj.com
*
*
* If you use this QCP rotation calculation method in a publication, please
* reference:
*
* Douglas L. Theobald (2005)
* "Rapid calculation of RMSD using a quaternion-based characteristic
* polynomial."
* Acta Crystallographica A 61(4):478-480.
*
* Pu Liu, Dmitris K. Agrafiotis, and Douglas L. Theobald (2009)
* "Fast determination of the optimal rotational matrix for macromolecular
* superpositions."
* in press, Journal of Computational Chemistry
*
*
* Copyright (c) 2009-2014, Pu Liu and Douglas L. Theobald
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted
* provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
* * Neither the name of the <ORGANIZATION> nor the names of its contributors may be used to
* endorse or promote products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Source: started anew.
*
* Change History:
* 2009/04/13 Started source
*
******************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
/* Calculate the RMSD & rotational matrix.
Input:
coords1 -- reference structure
coords2 -- candidate structure
len -- the size of the system
weight -- the weight array of size len; set to NULL if not needed
Output:
rot[9] -- rotation matrix
Return:
RMSD value
*/
double CalcRMSDRotationalMatrix(double **coords1, double **coords2, const int len, double *rot, const double *weight);
/* Calculate the inner product of two structures.
If weight array is not NULL, calculate the weighted inner product.
Input:
coords1 -- reference structure
coords2 -- candidate structure
len -- the size of the system
weight -- the weight array of size len: set to NULL if not needed
Output:
A[9] -- the inner product matrix
Return:
(G1 + G2) * 0.5; used as E0 in function 'FastCalcRMSDAndRotation'
Warning:
1. You MUST center the structures, coords1 and coords2, before calling this function.
2. Please note how the structure coordinates are stored in the double **coords
arrays. They are 3xN arrays, not Nx3 arrays as is also commonly
used (where the x, y, z axes are interleaved). The difference is
something like this for storage of a structure with 8 atoms:
Nx3: xyzxyzxyzxyzxyzxyzxyzxyz
3xN: xxxxxxxxyyyyyyyyzzzzzzzz
The functions can be easily modified, however, to accomodate any
data format preference. I chose this format because it is readily
used in vectorized functions (SIMD, Altivec, MMX, SSE2, etc.).
*/
//static double InnerProduct(double *A, double **coords1, double **coords2, const int len, const double *weight);
/* Calculate the RMSD, and/or the optimal rotation matrix.
Input:
A[9] -- the inner product of two structures
E0 -- (G1 + G2) * 0.5
len -- the size of the system
minScore-- if( minScore > 0 && rmsd < minScore) then calculate only the rmsd;
otherwise, calculate both the RMSD & the rotation matrix
Output:
rot[9] -- the rotation matrix in the order of xx, xy, xz, yx, yy, yz, zx, zy, zz
rmsd -- the RMSD value
Return:
only the rmsd was calculated if < 0
both the RMSD & rotational matrix calculated if > 0
*/
int FastCalcRMSDAndRotation(double *rot, double *A, double *rmsd, double E0, int len, double minScore);
/* Center the coordinates.
Warning:
If you are doing a full superposition (the usual least squares way),
you MUST center each structure first. That is, you must translate
each structure so that its centroid is at the origin.
You can use CenterCoords() for this.
*/
//static void CenterCoords(double **coords, const int len, const double *weight);
|