%%html
<script src="https://bits.csb.pitt.edu/preamble.js"></script>
...biomolecular structure, statistical mechanical phenomenon in biophysics, simulation of biomolecular behavior, and key applications of computations in the field of structural biology. Specific topics: probability theory, statistical mechanics and thermodynamics, simulation methods, electrostatic phenomena, biochemical kinetics, binding, coarse-grained modeling, enhanced sampling, free energy calculations, protein structure prediction, and structure-based drug design.
Alex Goldberg
amg535@pitt.edu
Office Hours: ?
Emma Flynn
7th Floor Murdoch Building
Office Hours: ?
ELF152@pitt.edu
%%html
<div id="dogpref" style="width: 500px"></div>
<script>
var divid = '#dogpref';
jQuery(divid).asker({
id: divid,
question: "How to you feel about dogs?",
answers: ["Love them","Like them",'Neutral',"Want to avoid"],
server: "https://bits.csb.pitt.edu/asker.js/example/asker.cgi",
charter: chartmaker})
$(".jp-InputArea .o:contains(html)").closest('.jp-InputArea').hide();
</script>
Lectures 2:30-4:00pm on Tuesdays and Thursdays in Murdoch 814.
Building Access Email Kelly Gentille (kmg120@pitt.edu) with picture of front and back of id card.
Recitations 2pm on Friday. Average recitation length should be ~1 hour but will stick around to 4pm.
Course material will be posted to Canvas: https://canvas.pitt.edu/courses/301742
Slack will be used for group discussions, announcements, and contacting staff. https://compstruct.slack.com/
Panopto All classes are automatically recorded and are available on Panopto as linked from Canvas. Recordings are provided as a study aid, not a replacement for attending class.
Zoom is available as a fallback when in-person attendance is not possible (linked from Canvas).
No required books, but several are available for reference.
DNA Sequence $\rightarrow$ RNA $\rightarrow$ Protein $\rightarrow$ Structure (Dynamics) $\rightarrow$ Function
import py3Dmol
Where is major/minor groove?
v = py3Dmol.view('4c64',style='cartoon'); v.show()
You appear to be running in JupyterLab (or JavaScript failed to load for some other reason). You need to install the 3dmol extension:
jupyter labextension install jupyterlab_3dmol
Cartoons trace molecule and show key features.
v = py3Dmol.view('4c64',style='cartoon'); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
Spheres (space-filling) highlights individual atoms (usually color coded by element).
v = py3Dmol.view('4c64',style='sphere'); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
Sticks (licorice) highlights bonds. Often used for small molecules.
v = py3Dmol.view('4c64',style='stick'); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
Note that sticks and cartoon won't show nonbonded atoms...
v = py3Dmol.view('4c64',style='stick')
v.setStyle({'bonds':0},{'sphere':{'radius':0.5}}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
%%html
<div id="whatdots" style="width: 500px"></div>
<script>
var divid = '#whatdots';
jQuery(divid).asker({
id: divid,
question: "What are the red dots?",
answers: ["Water","Ions","Cofactors","Phosphates"],
server: "https://bits.csb.pitt.edu/asker.js/example/asker.cgi",
charter: chartmaker})
$(".jp-InputArea .o:contains(html)").closest('.jp-InputArea').hide();
</script>
Surfaces show the overall shape.
v = py3Dmol.view('4c64',style='stick')
v.addSurface()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
<py3Dmol.view at 0x120b74b20>
From Introduction to Proteins: Structure, Function, and Motion. Amit Kessel & Nir Ben-Tal
v = py3Dmol.view('4c64',width=770,viewergrid=(1,3))
v.addSurface('VDW',viewer=(0,0)); v.addSurface('MS',viewer=(0,1)); v.addSurface('SAS',viewer=(0,2)); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
S-adenosylmethionine (SAM) / S-adenosylhomocysteine (SAH) riboswitch - regulates transcription of SAM-biosynthetic enzymes.
v = py3Dmol.view(query='6HAG',style='cartoon')
v.setStyle({'resn':'SAH'},'sphere')
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
<py3Dmol.view at 0x120bb2a00>
Transfer RNA
py3Dmol.view(query='4tna',style='stick')
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
<py3Dmol.view at 0x120bb27f0>
v = py3Dmol.view(query='3WTG',style={'cartoon':{'colorscheme':'chain'}})
v.setStyle({'resn':'HEM'},'stick')
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
<py3Dmol.view at 0x120bb2a90>
GATTACAGATTACAGATTACA $\rightarrow$ (N-terminal) DYRLQIT (C-terminal)
After forming the peptide bond, amino acids are called residues.
v = py3Dmol.view(query='cid:5950',style={'stick':{},'sphere':{'radius':0.5}})
v.addLabel('C⍺',{'backgroundOpacity':.8},{'index':3});v.addLabel('N-terminal',{'backgroundOpacity':.8},{'index':10}); v.addLabel('C-terminal',{'backgroundOpacity':.8},{'index':5}); v.addLabel('Side-chain',{'backgroundOpacity':.8},{'index':8}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
%%html
<div id="whataa" style="width: 500px"></div>
<script>
var divid = '#whataa';
jQuery(divid).asker({
id: divid,
question: "What is the previous amino acid?",
answers: ["alanine","asparigine",'glycine',"None of the above"],
server: "https://bits.csb.pitt.edu/asker.js/example/asker.cgi",
charter: chartmaker})
$(".jp-InputArea .o:contains(html)").closest('.jp-InputArea').hide();
</script>
Inverse measure of acid strength (lower number = stronger acid; opposite of Ka)
$$pK_a = -\log(K_a)$$$$K_a = \frac{[R^-][H^+]}{[RH]}$$$$pH = -\log([H^+]) = pK_a + \log\frac{[R^-]}{[RH]}$$$pK_a$ of carboxyl group is ~2
$pK_a$ of amino group is ~9
%%html
<div id="pkaq" style="width: 500px"></div>
<script>
var divid = "#pkaq";
jQuery(divid).asker({
id: divid,
question: "At neutral pH, what is the pronation of the backbone amino and carboxyl groups?",
answers: ["N-,C-","N+,C-",'N-,C+',"N+,C+"],
extra: ["both deprotonated","N protonated, C deprotonated","N deprotonated, C protonated","both protonated"],
server: "https://bits.csb.pitt.edu/asker.js/example/asker.cgi",
charter: chartmaker})
$(".jp-InputArea .o:contains(html)").closest('.jp-InputArea').hide();
</script>
These molecular interactions determine the fold (shape) of the protein and contribute to its function.
Coulomb's Law: the electrostatic force between two point charges is directly proportional to the product of the magnitudes of charges and inversely proportional to the square of the distance between them
Note that the strength of the force depends on the environment: water will shield charges and lessen the force (more later).
These ionic interactions are called salt bridges.
Structural protein of nuclear envelope. Phenotype of R527L is Mandibuloacral dysplasia (premature ageing)
v = py3Dmol.view(query='1ifr',style='cartoon'); sel = {'resi':[527,537]}; v.addStyle(sel,'stick'); v.zoomTo(sel); v.addResLabels(sel); v.show()
You appear to be running in JupyterLab (or JavaScript failed to load for some other reason). You need to install the 3dmol extension:
jupyter labextension install jupyterlab_3dmol
%%html
<div id="saltbridge" style="width: 500px"></div>
<script>
var divid = "#saltbridge";
jQuery(divid).asker({
id: divid,
question: "Which pair of amino acids can NOT form a salt bridge?",
answers: ["R-D","L-D","K-D","R-E"],
server: "https://bits.csb.pitt.edu/asker.js/example/asker.cgi",
charter: chartmaker})
$(".jp-InputArea .o:contains(html)").closest('.jp-InputArea').hide();
</script>
Polarization occurs when one of the atoms in a bond withdraws electrons towards (electronegativity) it resulting in partial charges on the atoms.
Polar molecules/groups have polar bonds.
Nonpolar molecules/groups do not have meaningfully polarized bonds (e.g., carbon-carbon).
An electronegative atom (O or N) "shares" a hydrogen with another electronegative atom.
Strength depends on participating atoms, bond geometry (angle and distance), and environment.
Can be reasonably well approximated as purely electrostatic (dipole-dipole), but reality is more complicated.
Hydrogen bonds are ubiquitous and involve the side-chains of polar (charged and uncharged) amino acids as well as the backbone of all amino acids.
From. Introduction to Proteins: Structure, Function, and Motion. Amit Kessel & Nir Ben-Tal
v = py3Dmol.view(query='6qtl',style='cartoon'); v.addStyle({'resi':[34,104]},'stick'); v.addStyle({'resi':[201]},{'stick':{'colorscheme':'greenCarbon'}}); v.zoomTo({'chain':'D','resi':201}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
v = py3Dmol.view(query='2vab',style='cartoon'); sel = {'or':[{'chain':'A','resi':[66,167,170]},{'chain':'P','resi':1}]}; v.addStyle(sel,'stick'); v.zoomTo(sel); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
The hydrophobic effect is not a force.
Nonpolar groups don't form favorable interactions with water.
These guys do not want to be solvent exposed and tend to pack in the hydrophobic core of the protein.
hydro = { 'prop': "resn", 'map': { 'ALA': 'orange', 'ARG': 'white', 'ASN': 'white', 'ASP': 'white', 'CYS': 'orange', 'GLN': 'white', 'GLU': 'white', 'GLY': 'orange', 'HIS': 'white', 'ILE': 'orange', 'LEU': 'orange', 'LYS': 'white', 'MET': 'orange', 'PHE': 'orange', 'PRO': 'white', 'SER': 'white', 'THR': 'white', 'TRP': 'orange', 'TYR': 'orange', 'VAL': 'orange', }}
v = py3Dmol.view(query='1ubq',style={'stick':{'colorscheme':hydro}}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
A covalent bond between the sulfurs (thiol group) of two cysteines (cross-link).
A "molecular staple"
Can act as a redox sensor - disulfid is oxidized fom and unbound is reduced.
v = py3Dmol.view(query='3rnt',style='cartoon'); v.addStyle({'resn':'CYS'},'stick'); v.zoomTo({'resn':'CYS'}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
Due to resonance, peptide bond has strong preference for remaining planar.
Trans is strongly preferred (except proline).
Why is trans preferred?
From Introduction to Proteins: Structure, Function, and Motion. Amit Kessel & Nir Ben-Tal
As the backbone geometry is largely determined by $\phi$ and $\psi$, can plot their propensities and observe there are clear preferences.
v = py3Dmol.view(query='3ssi',style='cartoon'); v.addStyle({'resn':'GLY'},'sphere'); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
v = py3Dmol.view(query='5cts',style='none'); v.setStyle({'resi':'5-29'},'cartoon'); v.addStyle({'resi':15},'stick'); v.zoomTo({'resi':'5-29'}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
Molecular interactions result in a hierarchy of of structures:
A whole or partial peptide chain that forms an independent structural unit
These are not common (energetically unfavorable) and are usually small and at the start/end of an alpha helix.
v = py3Dmol.view(query='1cag',style={'cartoon':{'colorscheme':'chain'}}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
v = py3Dmol.view(query='1cag',style={'stick':{'colorscheme':'chain'}}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
v = py3Dmol.view(query='1f94',style={'cartoon':{'color':'spectrum','arrows':True},'stick':{}}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
v = py3Dmol.view(query='1tph',style='none'); v.setStyle({'chain':'1'},{'cartoon':{'color':'spectrum','arrows':True},'stick':{'radius':0.2}}); v.zoomTo({'chain':'1'}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
Specific geometric arrangements of secondary structure that occur frequently (and someone has bothered to name)
v = py3Dmol.view(query='1DU0',style='cartoon'); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
v = py3Dmol.view(query='1C1G',style={'cartoon':{'colorscheme':'chain'}}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
v = py3Dmol.view(query='1BRP',style={'cartoon':{'color':'spectrum'}}); v.show()
3Dmol.js failed to load for some reason. Please check your browser console for error messages.
%%html
<div id="whatdrives" style="width: 500px"></div>
<script>
var divid = '#whatdrives';
jQuery(divid).asker({
id: divid,
question: "What do you think is more responsible for secondary structure formation?",
answers: ["Hydrogen bonding","Hydrophobicity","Both","Neither"],
server: "https://bits.csb.pitt.edu/asker.js/example/asker.cgi",
charter: chartmaker})
$(".jp-InputArea .o:contains(html)").closest('.jp-InputArea').hide();
</script>