-
|
Hello, I need to do RMSD analysis to tell:
So, my question is: "How to set selection string for superposition for RMSD for receptor alone, ligand alone and ligand with respect to the original binding site?" I mean superposition as the step that superposes a selection of atoms before RMSD calculation takes place. For examples:
Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
You need to distinguish between what you're superimposing on to create a common frame of reference and what you're computing the RMSD of. The RMSD class will superimpose I'd start by prototyping selections/atomgroups interactively and validate that it contains what you need. For example, for the receptor alone, your ca = u.select_atoms("chainID A and backbone")looks sensible. If you want to see how the ligand moves relative to the protein, superimpose on the protein and list the ligand heavy atoms in If you want to understand if the ligand changes conformation itself, superimpose on the ligand and calculate the RMSD of the ligand to itself. |
Beta Was this translation helpful? Give feedback.
You need to distinguish between what you're superimposing on to create a common frame of reference and what you're computing the RMSD of. The RMSD class will superimpose
atomgrouponreference(modified byselect) and then calculate the RMSD foratomgroupand and of the groups ingroupselection.I'd start by prototyping selections/atomgroups interactively and validate that it contains what you need. For example, for the receptor alone, your
looks sensible.
If you want to see how the ligand moves relative to the protein, superimpose on the protein and list the ligand heavy atoms in
groupselections.If you want to understand if the ligand change…