MD and NMR, calculation of (r)^-3 and (r)^-6 averaged distances

The assumption is that you have a set of experimental NOE-derived distances which you want to compare with the results from your simulation. For the discussion that follows you will need carma plus two extra programs: a perl script 'prep_proton.pl' and a C program 'noe_averaging'. Both of these are installed on norma, but for completeness, here is their source code.

prep_proton.pl, a perl script to calculate exhaustive table with all proton pairs

noe_averaging.c, a C program to calculate (r)^-3 and (r)^-6 averaged distances

noe_averaging.c, old (and extremely slow version)

There are two basic scenarios we need to consider:

  1. You want to compare only the observed NOE-derived distances with the calculated.
  2. You not only want to compare the observed NOE-derived distances with the calculated, but also want to see how many of the expected (from the simulation) distances have indeed been observed. This is based on this paper from the Gunsteren group.

For scenario (1) above, you will have to do some typing and pattern matching. Scenario (2) will require less typing but quite a lot of calculus (and can only be applied to small-to-tiny oligopeptides).

Scenario 2:


Scenario 1:

Everything is the same as above with one notable exception: after using the prep_proton.pl script to prepare the list of hydrogen pairs, you must remove all lines that do not have an experimentally observed distance bound. If you have a small number of pairs, it may turn out to be faster to type the list yourself.



Example

# mkdir tmp
# cd tmp
# cp /somedirectory/pept.psf .
# prep_proton.pl pept.psf
# carma -v -segid A -atmid ALLID -distance pept.protons -last 50000 my.dcd my.psf
# noe_averaging carma.distances | tee LOG
# ed LOG          => remove the header lines
# paste LOG pept.protons > merged
# awk '$3 < 5.5' merged > selected
# ed selected     => remove redundant entries