Protein Structure
If you want to understand how proteins fold, function, and fail, you need a practical grasp of protein structure. This guide explains the four levels of protein structure, the methods used to determine them, and the decision points you will face when analyzing a protein of interest. It is written for molecular biologists, bioinformaticians, graduate students, and any researcher who needs to interpret or work with protein structures. The NCBI Bookshelf provides an excellent foundation for the concepts I cover here NCBI Bookshelf. For hands on training in structural bioinformatics, the EMBL EBI Training portal offers practical courses and tutorials EMBL EBI Training.
At a Glance
| Level | Description | Experimental Methods | Computational Prediction |
|---|---|---|---|
| Primary | Linear sequence of amino acids | Edman degradation, mass spectrometry | BLAST, multiple sequence alignment |
| Secondary | Local folding into alpha helices and beta sheets | Circular dichroism, NMR | DSSP, PSIPRED |
| Tertiary | Three dimensional arrangement of a single polypeptide | X ray crystallography, NMR, cryo EM | AlphaFold, Rosetta, I TASSER |
| Quaternary | Assembly of multiple polypeptide subunits | Cryo EM, X ray crystallography | Docking programs (HADDOCK, ClusPro) |
Decision Criteria for Protein Structure Analysis
When you begin a protein structure project, you must choose a path between experimental determination and computational prediction. Experimental methods give you a concrete model but require purified protein, specialized equipment, and often years of optimization. Computational methods are faster and cheaper but rely on known templates or deep learning models. The decision depends on your question.
Ask yourself: do I need an atomic resolution model for drug design or enzyme engineering? If yes, invest in X ray crystallography or cryo EM. Do I need a structural model to interpret mutagenesis data or to predict functional domains? If yes, start with homology modeling or AlphaFold. The Galaxy Training Network offers robust workflows for homology modeling and validation, making it easier for newcomers to run these pipelines Galaxy Training Network.
For high throughput analysis of many protein sequences, the Bioconductor project provides R packages that handle structural annotation, alignment, and visualization Bioconductor. And for retrieving raw sequencing data that often encodes the primary structure, the NCBI Sequence Read Archive is an essential resource NCBI Sequence Read Archive.
Workflow for Protein Structure Analysis
I will outline a practical workflow that moves from sequence to structural insight. You can adapt this for your specific protein or system.
Step 1: Obtain the Sequence and Its Context
Start with the amino acid sequence. If you have a gene of interest, translate it after verifying the reading frame. Use the NCBI Sequence Read Archive to find experimental transcriptome or genome data if the gene is poorly annotated [5]. For many projects, a reference sequence from UniProt or NCBI Protein is sufficient. Align your sequence to homologs to identify conserved regions. A well known example is the spike glycoprotein of the highly virulent recombinant GIIc subtype PEDV. The study by (authors) isolated and characterized this strain, providing sequence data that allowed subsequent structural modeling of its receptor binding domain Isolation and pathogenicity of a highly virulent recombinant GIIc subtype PEDV strain.
Step 2: Predict Secondary Structure and Domains
Use a web server or local tool to predict alpha helices, beta sheets, and loops. The EMBL EBI Training resources include links to tools like JPred and PSIPRED [2]. Also run domain prediction with InterPro or Pfam. For example, a genome wide study of the phenylalanine ammonia lyase gene family in Chrysanthemum morifolium used domain analysis to classify members of this plant defense enzyme family Genome wide analysis and expression profiling of the phenylalanine ammonia lyase gene family in Chrysanthemum morifolium.
Step 3: Build a Tertiary Structure Model
If a close homolog (30% or higher sequence identity) has an experimentally solved structure, you can build a homology model using tools like SWISS MODEL or MODELLER. The Galaxy Training Network has a dedicated workflow for homology modeling that includes template search, alignment, model building, and evaluation [3]. If no good template exists, use deep learning predictors like AlphaFold2 (available through ColabFold or the EMBL EBI AlphaFold database). AlphaFold predictions have transformed structural biology but require careful validation.
For more specialized families, such as the DUF668 gene family in potato, structural modeling can reveal conserved features that correlate with growth and stress response functions. The comprehensive genome wide analysis of this family used homology modeling to predict tertiary structures of selected proteins Comprehensive genome wide analysis of DUF668 gene family in potato reveals roles in growth and stress responses.
Step 4: Validate the Model
Validation separates a useful model from a misleading one. Check the Ramachandran plot for backbone dihedral angle outliers. Compute the QMEAN or MolProbity score. Look at the local confidence scores from AlphaFold (pLDDT). If you used experimental data, examine the electron density map or cryo EM map for areas of poor fit. The Bioconductor package bio3d can perform many of these validation steps within an R environment [4].
Step 5: Interpret the Structure in a Biological Context
Map known mutations, antigenic sites, or functional residues onto the structure. For example, the major outer membrane protein (MOMP) of Chlamydia trachomatis has been used as a target for real time PCR diagnostics, and understanding its structure helps interpret diagnostic performance Prevalence, risk factors, and comparative diagnostic performance of cryptic plasmid and MOMP based real time PCR assays for genital Chlamydia trachomatis infection among women of reproductive age in the West Region of Cameroon a cross sectional study.
Similarly, the mitochondrial genome assembly of Ligusticum chuanxiong provides sequence data for proteins that are components of the respiratory chain. Their folding and assembly are critical for mitochondrial function and can be studied by comparative modeling Assembly of the complete mitochondrial genome of Ligusticum chuanxiong and its evolutionary implications.
For neurobiology, the Tau protein provides a striking example of how structure relates to pathology. Tau physiology and its role in neurodegenerative diseases involve conformational changes and aggregation. Studies of Tau structure using NMR and cryo EM have revealed how post translational modifications alter folding and promote filament formation Tau physiology and pathology impacts on cellular structures and neurodegenerative diseases.
Step 6: Share and Archive
Deposit your experimental structure in the Protein Data Bank (PDB) or your predicted model in a repository like ModelArchive. Document your workflow using Galaxy histories or Rmarkdown scripts so others can reproduce your analysis.
Common Mistakes
Trusting a prediction without validation. AlphaFold produces beautiful models, but they can be wrong in flexible loops, disordered regions, or novel folds. Always check confidence metrics.
Ignoring the biological environment. A structure solved in vacuum or crystal may not reflect the native cellular condition. Account for pH, ligands, post translational modifications, and membrane environment when interpreting.
Overinterpreting low resolution data. An X ray structure at 3.5 angstroms can give chain tracing but not precise side chain positions. Do not make claims about specific atomic interactions without high resolution data.
Assuming one structure captures all states. Proteins are dynamic. A single snapshot, whether from experiment or prediction, may miss alternative conformations important for function.
Neglecting sequence context. Domain boundaries and isoforms matter. A structure of a fragment may not represent the full length protein. The DUF668 study in potato noted that some family members lack conserved residues only visible in full length models [10].
Limits and Uncertainty
No method gives a perfect protein structure. Experimental techniques have inherent resolution limits. X ray crystallography requires crystals that may force proteins into non native conformations. NMR is limited to relatively small proteins. Cryo EM works best for large complexes and can have difficulty with small or flexible domains.
Computational predictions are improving rapidly but still struggle with disordered regions, multimeric complexes, and novel folds not represented in training data. Homology models are only as good as the alignment and the template. Even AlphaFold sometimes predicts structures with incorrect domain orientations or missing helices.
Biological interpretation also has limits. A structure does not automatically reveal function. You must integrate data from mutagenesis, binding assays, and cell biology. The structure is a hypothesis, not a truth.
Frequently Asked Questions
What is the difference between secondary and tertiary structure?
Secondary structure refers to local hydrogen bonding patterns that produce alpha helices and beta sheets. Tertiary structure describes the global three dimensional arrangement of all atoms in a single polypeptide chain. Secondary structure elements are the building blocks, tertiary structure is the final fold.
How do I choose between X ray crystallography and cryo EM for structure determination?
Choose X ray crystallography if you can obtain well diffracting crystals and need high resolution (under 2.5 angstroms). Choose cryo EM if your protein is large (over 50 kilodaltons) or part of a complex, especially if crystallization fails. Cryo EM also preserves more native conditions.
Can I trust AlphaFold predictions for drug design?
AlphaFold predictions can guide drug design but are not reliable for fine details of binding pockets. Use them for initial hypothesis generation, then validate with experiments such as docking, mutagenesis, or medicinal chemistry. Always check pLDDT scores and the predicted aligned error.
What free resources are available for protein structure analysis?
You can use the Protein Data Bank for experimental structures, UniProt for sequences, InterPro for domains, SWISS MODEL for homology modeling, AlphaFold DB for predictions, and PyMOL or ChimeraX for visualization. The Galaxy Training Network provides free workflows for many of these tasks [3]. The Bioconductor project offers free R packages like bio3d for structural analysis [4].
References and Further Reading
- NCBI Bookshelf: Free textbooks covering protein structure from basic to advanced. NCBI Bookshelf
- EMBL EBI Training: Courses on structural bioinformatics and sequence analysis. EMBL EBI Training
- Galaxy Training Network: Hands on tutorials for homology modeling, molecular dynamics, and validation. Galaxy Training Network
- Bioconductor: R packages for structural data handling and visualization. Bioconductor
- NCBI Sequence Read Archive: Repository of sequencing data for protein coding genes. NCBI Sequence Read Archive
- PEDV spike protein study: Example of sequence to structure analysis in a viral context. Isolation and pathogenicity of a highly virulent recombinant GIIc subtype PEDV strain
- Chlamydia MOMP study: Example of protein structure impact on diagnostic assay design. Prevalence, risk factors, and comparative diagnostic performance of cryptic plasmid and MOMP based real time PCR assays
- Phenylalanine ammonia lyase gene family study: Domain analysis in plant proteins. Genome wide analysis and expression profiling of the phenylalanine ammonia lyase gene family
- Ligusticum chuanxiong mitogenome: Protein coding genes in a complete mitochondrial genome. Assembly of the complete mitochondrial genome of Ligusticum chuanxiong
- Potato DUF668 family: Homology modeling of a stress related protein family. Comprehensive genome wide analysis of DUF668 gene family in potato
- Tau protein study: Structural basis of neurodegeneration. Tau physiology and pathology impacts on cellular structures and neurodegenerative diseases