Quantify protein concentration from \(A_{280}\) UV absorbance via the Beer-Lambert law, predict extinction coefficients from FASTA sequences, interpolate BCA/Bradford standard curves, and calculate molarity.
Add this volume of buffer to dissolve your total mass to the target µM stock.
The Biochemical Physics of Direct UV Absorbance at 280 nm
Direct ultraviolet spectrophotometry at \(280\text{ nm}\) (\(A_{280}\)) is the gold standard method for non-destructive protein quantification in biochemistry, structural biology, and biopharmaceutical manufacturing. Unlike colorimetric assays that consume sample material and require chemical incubation, \(A_{280}\) measurements rely on the intrinsic electronic transitions of aromatic amino acid side chains.
1. Tryptophan (\(\text{Trp}, W\))
The indole ring of tryptophan is the strongest UV chromophore in proteins, with an extinction coefficient of \(\varepsilon_{280} \approx 5,500\text{ M}^{-1}\text{cm}^{-1}\). It accounts for the vast majority of \(280\text{ nm}\) absorbance in folded polypeptides.
2. Tyrosine (\(\text{Tyr}, Y\))
The phenolic side chain of tyrosine exhibits moderate absorbance with \(\varepsilon_{280} \approx 1,490\text{ M}^{-1}\text{cm}^{-1}\). While weaker than tryptophan, tyrosine is generally more abundant in globular proteins.
3. Cystine Disulfides (\(\text{Cys-Cys}\))
Covalent disulfide bonds absorb weakly with \(\varepsilon_{280} \approx 125\text{ M}^{-1}\text{cm}^{-1}\) per cystine pair. Free cysteine thiols (\(-\text{SH}\)) and other amino acids absorb negligibly at \(280\text{ nm}\).
Mathematical Foundations: The Beer-Lambert Law for Proteins
The physical relationship between optical absorbance and protein concentration is described by the Beer-Lambert Law:
\[
A = \varepsilon \cdot l \cdot c
\]
Where:
\(A\): Net optical absorbance at \(280\text{ nm}\) (\(A_{\text{sample}} - A_{\text{blank}} - A_{\text{turbidity}}\)).
\(\varepsilon\): Molar extinction coefficient (\(\text{M}^{-1}\text{cm}^{-1}\) or \(\text{L}\cdot\text{mol}^{-1}\cdot\text{cm}^{-1}\)).
\(l\): Optical pathlength in centimetres (\(1.0\text{ cm}\) for standard cuvettes, \(0.1\text{ cm}\) for \(1\text{ mm}\) NanoDrop).
To obtain mass concentration directly in \(\text{mg/mL}\) (which equals \(\text{g/L}\)), biophysicists use the mass extinction coefficient \(E_{0.1\%}\) (the absorbance of a \(1.0\text{ mg/mL} = 0.1\%\) solution):
Nucleic Acid Contamination & The Christian-Warburg Correction
Co-purified nucleic acids (genomic DNA, plasmid DNA, or cellular RNA) absorb UV light strongly at \(260\text{ nm}\) and moderately at \(280\text{ nm}\). Because nucleic acid extinction coefficients are roughly \(10\times\) higher than proteins, even a tiny \(1\%\) nucleic acid impurity can cause a massive \(20\%\text{ to }50\%\) overestimation of protein concentration.
1. Assessing Purity with \(A_{260}/A_{280}\) Ratio:
Pure Protein: \(A_{260}/A_{280} \approx 0.55 - 0.65\).
Protein Assay Comparison Matrix: Direct A280 vs. BCA vs. Bradford vs. Lowry
Choosing the right protein quantification method depends on your sample purity, buffer composition, and sensitivity requirements:
Method
Working Range
Destructive?
Detergent Tolerance
Reducing Agent (DTT/BME)
Best Used For
Direct UV (A280)
0.1 – 100 mg/mL
No (100% Recoverable)
Low (UV-absorbing detergents interfere)
High (DTT/BME compatible with baseline blank)
Purified proteins, antibodies, fast column chromatography
BCA Assay (Pierce)
20 – 2,000 µg/mL
Yes
Excellent (Tolerates up to 5% SDS, Triton, NP-40)
Incompatible (Reduces Cu²⁺ prematurely)
Cell lysates, membrane proteins solubilized in detergents
Bradford (Coomassie)
10 – 1,500 µg/mL
Yes
Incompatible (Detergents precipitate dye)
Compatible (Tolerates DTT, BME)
Fast routine laboratory checks, enzymatic assays
Lowry Assay
1 – 1,500 µg/mL
Yes
Low to Moderate
Incompatible
Historical reference standard, high precision
Automating Protein Quantification in Python and R
Ready-to-use computational scripts for automated high-throughput plate reader processing:
1. Python (using BioPython for sequence extinction & concentration):
from Bio.SeqUtils.ProtParam import ProteinAnalysis
# Example: Hen Egg White Lysozyme
sequence = "KVFGRCELAAAMKRHGLDNYRGYSLGNWVCAAKFESNFNTQATNRNTDGSTDYGILQINSRWWCNDGRTPGSRNLCNIPCSALLSSDITASVNCAKKIVSDGNGMNAWVAWRNRCKGTDVQAWIRGCRL"
analysed_seq = ProteinAnalysis(sequence)
mw = analysed_seq.molecular_weight() # Daltons
epsilon_reduced, epsilon_cystines = analysed_seq.molar_extinction_coefficient()
# UV Measurement: A280 = 1.328 in a 1 cm cuvette with 2x dilution
a280_measured = 1.328
dilution_factor = 2.0
pathlength = 1.0
# Calculate Molarity (M) and Mass Concentration (mg/mL)
molar_conc = (a280_measured * dilution_factor) / (epsilon_cystines * pathlength)
mg_ml_conc = molar_conc * mw / 1000.0
print(f"MW: {mw/1000:.2f} kDa")
print(f"Extinction: {epsilon_cystines} M^-1 cm^-1")
print(f"Concentration: {mg_ml_conc:.3f} mg/mL ({molar_conc * 1e6:.2f} µM)")
Frequently Asked Questions (FAQ)
Authoritative answers to common questions regarding A280 protein quantification, extinction coefficients, purity ratios, and standard curves.
How do you calculate protein concentration from A280 absorbance values?▼
Protein concentration is calculated from absorbance at 280 nm using the Beer-Lambert Law: c = (A280 - A_blank) / (epsilon * l) * Dilution Factor, where A280 is the measured UV absorbance, epsilon is the molar extinction coefficient (M^-1 cm^-1) or mass extinction coefficient (E0.1%), l is the cuvette or microvolume pathlength (cm), and c is the resulting protein concentration in molarity or mg/mL.
What is the extinction coefficient of a protein and how is it determined?▼
The extinction coefficient (epsilon_280) is a physical constant that measures how strongly a protein absorbs UV light at 280 nm, primarily dictated by aromatic amino acids—tryptophan (Trp, ~5,500 M^-1 cm^-1), tyrosine (Tyr, ~1,490 M^-1 cm^-1), and cystine disulfide bonds (~125 M^-1 cm^-1). Using the Pace-Edelhoch / Expasy ProtParam formula, theoretical extinction is predicted from the primary sequence: epsilon_280 = (n_Trp * 5500) + (n_Tyr * 1490) + (n_Cystine * 125).
How do I convert protein mass concentration (mg/mL) to molarity (µM or M)?▼
To convert mass concentration (mg/mL or g/L) into molarity (M), divide the mass concentration by the protein's molecular weight (MW in Daltons or g/mol): Molarity (M) = Concentration (g/L) / Molecular Weight (g/mol). For micromolar (µM), multiply the result by 10^6, or use the direct shortcut: µM = (mg/mL * 10^6) / MW (Da). For example, 1.0 mg/mL Bovine Serum Albumin (BSA, MW = 66,463 Da) corresponds to 15.05 µM.
How do nucleic acid impurities affect A280 protein measurements and how are they corrected?▼
Nucleic acids (DNA and RNA) absorb UV light strongly at 260 nm and moderately at 280 nm, causing significant overestimation of protein concentration if co-purified. Pure proteins exhibit an A260/A280 ratio of ~0.55 to 0.70. When nucleic acid contamination is present, the Christian-Warburg / Layne formula applies empirical correction: Corrected Protein (mg/mL) = (1.55 * A280) - (0.76 * A260).
When should I use Direct A280 vs. Colorimetric Assays (BCA, Bradford, Lowry)?▼
Direct A280 UV spectrophotometry is fast, non-destructive, and requires no reagents, making it ideal for purified recombinant proteins and antibodies with known extinction coefficients in non-absorbing buffers. Conversely, colorimetric assays (BCA, Bradford, Lowry) are required for complex cell lysates, unpurified protein mixtures, or samples containing UV-absorbing buffer components (like Triton X-100, DTT, nucleic acids, or imidazole) by measuring absorbance relative to a standard curve (e.g. BSA).
How does sample pathlength (10 mm cuvette vs. 1 mm NanoDrop) affect the calculation?▼
Absorbance is directly proportional to optical pathlength according to the Beer-Lambert Law (A = epsilon * l * c). Standard laboratory spectrophotometer cuvettes have an optical pathlength of 1.0 cm (10 mm). Microvolume spectrophotometers like the Thermo Fisher NanoDrop use automated pathlengths of 1.0 mm (0.1 cm) or 0.5 mm (0.05 cm). Always divide the raw optical density by the actual pathlength (cm) before applying extinction coefficients, or ensure pathlength compensation is enabled.
How do I determine the concentration of a protein without any tryptophan or tyrosine residues?▼
Proteins and peptides lacking tryptophan and tyrosine absorb negligibly at 280 nm and cannot be accurately quantified via standard A280 measurements. Instead, quantify them using peptide backbone absorbance at far-UV wavelengths (A205 nm, where peptide bonds absorb strongly), colorimetric methods like the Micro BCA or Bradford assay, or amino acid analysis (AAA) for absolute quantification.
How do I calculate the reconstitution volume to dissolve lyophilized protein to a target molarity?▼
To determine the volume of buffer required to dissolve a mass of lyophilized protein to a target concentration, use the formula: Volume (L) = Mass (g) / (Target Molarity (M) * Molecular Weight (g/mol)). For micro-scale calculations: Reconstitution Volume (µL) = [Mass (µg) / (Target Molarity (µM) * MW (kDa))]. For example, dissolving 500 µg of a 25 kDa protein to a 100 µM stock requires exactly 200 µL of reconstitution buffer.
Explore Related Biotechnology & Life Science Tools