๐Ÿงช

Experimental Techniques

The experimental methods that reveal molecular structure at atomic resolution. From X-ray crystallography and cryo-EM to NMR spectroscopy and mass spectrometry โ€” the tools that make structural biology possible.

1. X-ray Crystallography

X-ray crystallography remains the gold standard for atomic-resolution structure determination. When X-rays scatter from a crystal lattice, constructive interference produces a diffraction pattern governed by Bragg's law:

$$n\lambda = 2d\sin\theta$$

where $n$ is the diffraction order, $\lambda$ the X-ray wavelength,$d$ the inter-plane spacing, and $\theta$ the Bragg angle. The diffraction pattern encodes the structure through the structure factor:

$$F(\mathbf{h}) = \sum_{j=1}^{N} f_j \exp(2\pi i \, \mathbf{h} \cdot \mathbf{r}_j)$$

The electron density is recovered by inverse Fourier transform, but phases are lost in the measurement (the "phase problem"):

$$\rho(\mathbf{r}) = \frac{1}{V}\sum_{\mathbf{h}} |F(\mathbf{h})| \, e^{i\phi(\mathbf{h})} \, e^{-2\pi i \, \mathbf{h} \cdot \mathbf{r}}$$

Molecular Replacement

Uses known homologous structure as phasing model via Patterson function rotation/translation search

MAD/SAD Phasing

Anomalous scattering from heavy atoms (Se-Met) provides phase information via Bijvoet differences

Isomorphous Replacement

Heavy atom derivatives (MIR/SIR) introduce measurable intensity changes for phasing

2. Cryo-Electron Microscopy

The "resolution revolution" in cryo-EM now routinely achieves near-atomic resolution without crystallization. Samples are flash-frozen in vitreous ice and imaged by transmission electron microscopy. The image contrast is described by the Contrast Transfer Function (CTF):

$$\text{CTF}(s) = -\sin\left(\frac{\pi C_s \lambda^3 s^4}{2} + \pi \Delta f \lambda s^2\right)$$

where $C_s$ is the spherical aberration coefficient, $\lambda$ the electron wavelength, $s$ the spatial frequency, and $\Delta f$ the defocus. Single-particle reconstruction involves:

Image Processing Pipeline

  1. 1. Motion correction (beam-induced movement)
  2. 2. CTF estimation and correction
  3. 3. Particle picking (template/neural network)
  4. 4. 2D classification (remove junk)
  5. 5. Ab initio 3D reconstruction
  6. 6. 3D refinement and sharpening

Resolution Metrics

Resolution is assessed by the Fourier Shell Correlation (FSC) between two independent half-maps:

$$\text{FSC}(s) = \frac{\sum F_1(s) \cdot F_2^*(s)}{\sqrt{\sum|F_1(s)|^2 \cdot \sum|F_2(s)|^2}}$$

Resolution defined at FSC = 0.143 (gold-standard)

3. NMR Spectroscopy

Nuclear Magnetic Resonance provides atomic-level structural and dynamic information for proteins in solution. The resonance frequency of a nucleus depends on its chemical environment through the chemical shift:

$$\delta = \frac{\nu_{\text{sample}} - \nu_{\text{ref}}}{\nu_{\text{ref}}} \times 10^6 \text{ (ppm)}$$

Chemical Shift

Reports on local electronic environment. Secondary structure affects backbone shifts (CSI method).

NOE (Nuclear Overhauser Effect)

Distance restraints between protons within ~5 Angstroms. The NOE intensity scales as:

$$I_{\text{NOE}} \propto r^{-6}$$

Relaxation

T1 (spin-lattice) and T2 (spin-spin) relaxation report on molecular dynamics from ps to ms timescales.

$$M_z(t) = M_0(1 - e^{-t/T_1})$$

4. Mass Spectrometry

Mass spectrometry measures the mass-to-charge ratio (m/z) of ionized molecules with extraordinary precision. In proteomics, it identifies proteins, maps post-translational modifications, and quantifies expression levels.

$$\frac{m}{z} = \frac{M + nH^+}{n}$$

where M is the molecular mass, n is the number of charges, and H+ is the proton mass. Time-of-flight (TOF) analyzers separate ions by their flight time:

$$t = L\sqrt{\frac{m}{2zV}}$$

where L is the flight path length and V is the accelerating voltage. Native mass spectrometry preserves non-covalent interactions, enabling analysis of intact protein complexes.

5. Fluorescence Spectroscopy

Fluorescence techniques probe molecular structure, dynamics, and interactions with extreme sensitivity โ€” down to single molecules. The Stokes shift between absorption and emission reflects vibrational relaxation in the excited state.

FRET (Single-Molecule)

smFRET measures donor-acceptor distances in individual molecules, revealing conformational heterogeneity hidden in ensemble measurements:

$$E = \frac{1}{1 + (R/R_0)^6} = \frac{I_A}{I_A + \gamma I_D}$$

Fluorescence Lifetime

Time-resolved fluorescence decays report on the local environment through the fluorescence lifetime:

$$I(t) = I_0 \exp(-t/\tau)$$

Typical lifetimes: 1-10 ns for organic fluorophores

Python Simulation: X-ray Diffraction Pattern

This simulation calculates the X-ray diffraction pattern from a 2D crystal lattice with a two-atom basis. It computes structure factors, d-spacings, Bragg angles, and reconstructs the electron density via Fourier synthesis.

X-ray Diffraction Pattern Simulation

Python

Structure factor calculation, Bragg angles, and electron density reconstruction for a 2D crystal

script.py118 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server

Fortran Computation: Bragg Angle Calculator

This Fortran program calculates Bragg diffraction angles for common crystal structures including NaCl and protein crystals. It applies selection rules for face-centered cubic lattices and computes resolution as a function of scattering angle.

Bragg Angle Calculator

Fortran

Diffraction angle calculations for NaCl and protein crystal structures with resolution analysis

bragg_calculator.f90126 lines

Click Run to execute the Fortran code

Code will be compiled with gfortran and executed on the server

Video Lectures

MIT: X-ray Crystallography

MIT lecture on X-ray crystallography fundamentals, Bragg's law derivation, structure factor calculation, and the phase problem.

Introduction to Cryo-EM

Overview of cryo-electron microscopy including sample preparation, image processing, single-particle reconstruction, and recent resolution achievements.

Key Concepts Summary

X-ray Crystallography

Bragg diffraction from crystal lattices provides atomic-resolution structures via Fourier synthesis

Cryo-EM

Flash-frozen samples imaged without crystals; single-particle reconstruction now achieves sub-2 Angstrom resolution

NMR Spectroscopy

Solution-state structure and dynamics from chemical shifts, NOEs, and relaxation measurements

Mass Spectrometry

Precise m/z measurements identify proteins, map modifications, and analyze intact complexes