What I do
- Explain molecular structure principles
- Describe protein structure organization
- Discuss structural analysis methods
- Analyze molecular interactions
- Connect structure to function
- Explain structural determination techniques
When to use me
- When learning structural biology basics
- When explaining protein structure
- When studying molecular interactions
- When preparing educational content
Key Concepts
Biomolecular Structure
Proteins
- Amino acids linked by peptide bonds
- 20 standard amino acids
- Primary through quaternary structure
- Folding into 3D conformation
Nucleic Acids
- DNA: Double helix (B-form)
- RNA: Various structures (A, Z, hairpins)
- Nucleotides: Phosphate-sugar-base
Molecular Interactions
# Common interactions
interactions = {
'covalent': 'Strong, ~350 kJ/mol, shared electrons',
'ionic': 'Moderate, ~250 kJ/mol, charge-charge',
'hydrogen': 'Weak-moderate, ~20-40 kJ/mol, X-H---Y',
'hydrophobic': 'Weak, ~5 kJ/mol, entropy-driven',
'van_der_waals': 'Very weak, ~1 kJ/mol, induced dipoles'
}
# Bond types in biomolecules
bonds = {
'peptide': 'N-C, backbone',
'glycosidic': 'Sugar-sugar, sugar-base',
'phosphodiester': 'Nucleotide backbone'
}
Techniques Overview
- X-ray crystallography
- NMR spectroscopy
- Cryo-EM
- Mass spectrometry
- Spectroscopy (UV, CD, fluorescence)
- Computational modeling
Structure Databases
- PDB: Protein Data Bank
- NCBI Structure
- EMDB: Electron Microscopy DB
- AlphaFold DB
1---2name: structural3description: Structural biology fundamentals4license: MIT5---67## What I do89- Explain molecular structure principles10- Describe protein structure organization11- Discuss structural analysis methods12- Analyze molecular interactions13- Connect structure to function14- Explain structural determination techniques1516## When to use me1718- When learning structural biology basics19- When explaining protein structure20- When studying molecular interactions21- When preparing educational content2223## Key Concepts2425### Biomolecular Structure2627**Proteins**28- Amino acids linked by peptide bonds29- 20 standard amino acids30- Primary through quaternary structure31- Folding into 3D conformation3233**Nucleic Acids**34- DNA: Double helix (B-form)35- RNA: Various structures (A, Z, hairpins)36- Nucleotides: Phosphate-sugar-base3738### Molecular Interactions3940```python41# Common interactions42interactions = {43 'covalent': 'Strong, ~350 kJ/mol, shared electrons',44 'ionic': 'Moderate, ~250 kJ/mol, charge-charge',45 'hydrogen': 'Weak-moderate, ~20-40 kJ/mol, X-H---Y',46 'hydrophobic': 'Weak, ~5 kJ/mol, entropy-driven',47 'van_der_waals': 'Very weak, ~1 kJ/mol, induced dipoles'48}4950# Bond types in biomolecules51bonds = {52 'peptide': 'N-C, backbone',53 'glycosidic': 'Sugar-sugar, sugar-base',54 'phosphodiester': 'Nucleotide backbone'55}56```5758### Techniques Overview5960- X-ray crystallography61- NMR spectroscopy62- Cryo-EM63- Mass spectrometry64- Spectroscopy (UV, CD, fluorescence)65- Computational modeling6667### Structure Databases6869- PDB: Protein Data Bank70- NCBI Structure71- EMDB: Electron Microscopy DB72- AlphaFold DB