In article <113595 at netnews.upenn.edu> duong at chestnut.chem.upenn.edu (Duc Duong) writes:
>>hi..
>>does any one know a software (PD or commercial) that will compare 3D
>structures of two proteins by measuring minimum possible root mean
>square bwetween equivalent C alpha positions?
>
You could write the code yourself with the following information:
First the two structures must be superimposed. See:
Kearley, S.K., J. Comput. Chem., 11, 1187-1192 (1990).
Next you can calculate the distances between atoms (in C) with:
d = sqrt(pow(atom1[X] - atom2[X], 2)
+ pow(atom1[Y] - atom2[Y], 2)
+ pow(atom1[Z] - atom2[Z], 2));
Square all of the distances, average the squares, and take the square root.
That's all!
+---------------------------------------------------------------------------+
|Randal R. Ketchem ***CELEBRATE FREEDOM*** |
|Institute of Molecular Biophysics The Holy Bible by God |
|Florida State University /_/\/\ 1984 by George Orwell |
|Tallahassee, FL 32306-3015 \_\ / A Farewell to Arms by Ernest Hemingway|
|904.644.7798 /_/ \ The Catcher in the Rye by J.D. Salinger|
| \_\/\ \ Flowers for Algernon by Daniel Keyes |
|Internet: rrk at sb.fsu.edu \_\/ ***READ A BANNED BOOK*** |
+---------------------------------------------------------------------------+