Welcome to join the forum!
What is described by the three numers follwing "Helix:" in this section?
They are the direction cosines of the global linear helical axis, defined in the coordinate frame of the PDB file. Again, the point is best illustrated with an example. For 355d (bdl084), the portion from 3DNA
analyze output is like this:
Global linear helical axis defined by equivalent C1' and RN9/YN1 atom pairs
Deviation from regular linear helix: 3.30(0.52)
Helix: -0.127 -0.275 -0.953
HETATM 9998 XS X X 999 17.536 25.713 25.665
HETATM 9999 XE X X 999 12.911 15.677 -9.080
The two HETATM records are the two ends point defining the helix; using octave (matlab), we have the following relation:
XE = [12.911 15.677 -9.080]
XS = [17.536 25.713 25.665]
dd = XE - XS % [-4.625 -10.036 -34.745]
helix = dd / norm(dd) % [-0.12685 -0.27526 -0.95296] which is ~ [-0.127 -0.275 -0.953]
Regarding DNA bending analysis, you may also want to play with
Curves+ released by Dr. Lavery. As mentioned in my blog post,
Curves+ vs 3DNA, Curves+ has features still lacking in 3DNA.
I am not sure how to get relativet twists (helical phases) of the two segments. I am considering fitting helices in a trajectory to a standard average helix and then compare the RN9/YN1 lines of the first base pair in each fit helix. Any better sugestions?
Could you be more specific, i.e., illustrated with an example what you want to achieve?
HTH,
Xiang-Jun