1501
General discussions (Q&As) / Re: superimpose original structure with rebuilt structure
« on: June 27, 2010, 07:58:24 pm »
Dear Mike,
There is some subtlety to "superimpose original structure with [3DNA] rebuilt structure". Your example serves to illustrate how to do it properly. In your original post:
Note that both analyze and rebuild generate the file "ref_frames.dat"; however, they are in different coordinate system.
Xiang-Jun
There is some subtlety to "superimpose original structure with [3DNA] rebuilt structure". Your example serves to illustrate how to do it properly. In your original post:
Code: [Select]
find_pair bot_hlx.pdb stdout | analyze
cp bot_hlx.pdb bot_hlx.xse.pdb
grep HETATM bot_hlx.out >> bot_hlx.xse.pdb
rebuild -atomic bp_step.par bot_hlx.3dna.pdb
frame_mol -1 ref_frames.dat bot_hlx.xse.pdb bot_hlx2.xse.pdbYou do not need to bother with the "cp ..." and "grep ..." steps. Instead, you can achieve what you want simply as below:Code: [Select]
find_pair bot_hlx.pdb stdout | analyze
frame_mol -1 ref_frames.dat bot_hlx.pdb bot_hlx_frame1.pdb
rebuild -atomic bp_step.par bot_hlx.3dna.pdbThen compare "bot_hlx_frame1.pdb" and "bot_hlx.3dna.pdb"; the coordinates for the base atoms would be very close. Have a try and report back how it goes. It would help if you have attached the example file "bot_hlx.pdb" so others can follow the steps.Note that both analyze and rebuild generate the file "ref_frames.dat"; however, they are in different coordinate system.
Xiang-Jun
