Member Site › Forums › PyRosetta › PyRosetta – Applications › Constraints residues in different chain in protein-protein docking
- This topic has 2 replies, 2 voices, and was last updated 4 years ago by Anonymous.
-
AuthorPosts
-
-
November 28, 2020 at 6:24 pm #3633Anonymous
Hello,
I want to dock two proteins. I have some constraints between residues of different chain (here chain A and .
For eaxmple:
For residues number 15 of chain A, and residue number 271 of chain B, I have the following information:
The minimum distance between residues is 0, and the maximum distance is 6.
How can I add constrain for something like this case (I mean when residues are in different chain)? How can I specify that residues are in diffrent chain?
Thank you very much
-
November 29, 2020 at 6:04 pm #15625Anonymous
Hi!
The documentation for the constraints system is here. It takes a bit to digest but is very useful.
For your case I would look to use the AtomPair constraint. It will allow for definition of a constraint between an atom on residue 15 of chain A and an atom on residue 217 of chain B. For your desired distances a FlatHarmonic function is relatively simple. Finally, You’ll want to wrap AtomPair constraints for each pair of atoms (or each logical pair) in an AmbiguousConstraint.
An example of a few atom pairs would look like this:
AmbiguousConstraint
AtomPair CA 15A CA 217B FLAT_HARMONIC 0 0.5 6
AtomPair CA 15A CB 217B FLAT_HARMONIC 0 0.5 6
.
.
.
AtomPair N 15A O 217B FLAT_HARMONIC 0 0.5 6
ENDMany constraint types recognize residue definitions using the “pdb numbering” format where the chain identifier follows the residue number, as in the example. Many can also utilize “pose numbering” where the system is numbered from 1 to N as in the input file. In the latter case, if both chains start at 1 and end at 300, then your constraint type definition would use 15 and 517 as the residue numbers.
The flat harmonic function scores as 0 for any distance between the two atoms from 0 to 6 angstroms. Deviations above 6 will incur a harmonic penalty with a standard deviation of 0.5.
In the above, you only need to generate the constraint once for each pair. Adding additional constraints from CA 217B to CA 15A would double the penalty if outside 6 angstroms.
Don’t forget to add the atom_pair_constraint term to your score function using -score::set_weights atom_pair_constraint 1.0
Hope that helps!
-
November 30, 2020 at 8:24 pm #15629Anonymous
Thank you very much for your help.
-
-
AuthorPosts
- You must be logged in to reply to this topic.