<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
Hi Elaine-</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
As always thank you for your very useful advice. I selected just the regions of interest where two proteins interacted in the pocket in chain C. I then used the </div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
alphafold contacts </div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
command and limited the interaction to just those hydrophobic residues in the targeted portions of the two proteins that were less than 4.5 A apart. This displayed not only the contacts, but also the AF2 confidence score (pLDDT) for each residue pair. In
this way we are able to demonstrate that not only are the contacts at a specific distance but that the contacts are between hydrophobic residues whose positions are <span style="background-color:rgb(255, 255, 255);display:inline !important" class="ContentPasted1">highly
supported</span>.</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
Side bar question: what rationale did you use for the 4.5 distance you mentioned.</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof">
Phil</div>
<div id="appendonsend"></div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> Elaine Meng <meng@cgl.ucsf.edu><br>
<b>Sent:</b> Tuesday, November 1, 2022 1:10 PM<br>
<b>To:</b> McClean, Phillip <phillip.mcclean@ndsu.edu><br>
<b>Cc:</b> chimerax-users@cgl.ucsf.edu <chimerax-users@cgl.ucsf.edu><br>
<b>Subject:</b> Re: [chimerax-users] How to discover hydrophobic between two chains</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">Hi Phil,<br>
If you hover the cursor over the surface it will show in a pop-up label the residue name at that location, or Ctrl-click to select and then use menu Actions... Label... [etc.] or command "label sel." The label command has other options like color, height,
etc. Or you can hide the surface or make it partly transparent to show displayed atoms inside.<br>
<<a href="https://rbvi.ucsf.edu/chimerax/docs/user/commands/label.html">https://rbvi.ucsf.edu/chimerax/docs/user/commands/label.html</a>><br>
<br>
Or if you mean you want a list of pairwise atomic interactions in the interface, see the atomic Contacts tool (although it will not automatically separate hydrophobic from polar interactions, you would have to do that yourself based on atom and residue types
either by limiting the scope of input or by filtering the results). It's in the menu under Tools.. Structure Analysis, or you can use the equivalent "contacts" command. Results can be written to Log or file.<br>
<<a href="https://rbvi.ucsf.edu/chimerax/docs/user/tools/clashes.html">https://rbvi.ucsf.edu/chimerax/docs/user/tools/clashes.html</a>><br>
<<a href="https://rbvi.ucsf.edu/chimerax/docs/user/commands/clashes.html">https://rbvi.ucsf.edu/chimerax/docs/user/commands/clashes.html</a>><br>
<br>
There is also an Interfaces command to identify interface residues, although it doesn't say which residues are interacting with which<br>
<<a href="https://rbvi.ucsf.edu/chimerax/docs/user/commands/interfaces.html">https://rbvi.ucsf.edu/chimerax/docs/user/commands/interfaces.html</a>><br>
<br>
Or if you can think of a simple rule you can often express that as a selection in the command line, e.g.<br>
<br>
name bphob /B:phe,trp,tyr,leu,ile,ala,val & sidechain<br>
name cphob /C:phe,trp,tyr,leu,ile,ala,val & sidechain<br>
sel bphob & cphob :<4.5<br>
show sel<br>
label sel height 2 color red<br>
sel cphob & bphob :<4.5<br>
show sel<br>
label sel height 2 color red<br>
<br>
...meaning find in each chain those atoms I defined as "phob" (you could certainly use a different definition) that are within 4.5 A of "phob" atoms in the other chain. The above would just label them all, however, not list pairwise interactions, although
you could probably identify them easily by visual inspection. To automatically write out a list of pairwise interactions you would need to use Contacts, however.<br>
I hope this helps,<br>
Elaine<br>
-----<br>
Elaine C. Meng, Ph.D. <br>
UCSF Chimera(X) team<br>
Department of Pharmaceutical Chemistry<br>
University of California, San Francisco<br>
<br>
<br>
> On Nov 1, 2022, at 10:26 AM, McClean, Phillip via ChimeraX-users <chimerax-users@cgl.ucsf.edu> wrote:<br>
> <br>
> Hi Everyone,<br>
> <br>
> I ran AF2 multimer and have a two-chain complex. I ran the mlp command on the two chains separately and together. The two chains seem to interact via hydrophobic residues where chain B fits into a pocket on chain C. Here are the chain residues:<br>
> <br>
> /b:72-124<br>
> /c:1-190<br>
> <br>
> Is there any way to determine which residues (hydrophobic) in each of these two regions are interacting via hydrophobic interactions.<br>
> <br>
> Thanks for any help you can provide.<br>
> <br>
> Phil McClean<br>
<br>
</div>
</span></font></div>
</body>
</html>