What I do
- Explain molecular processes in cells
- Describe nucleic acid structure and function
- Discuss protein synthesis and function
- Explain genetic information flow
- Connect genes to cellular function
- Apply molecular biology techniques
When to use me
- When learning molecular biology basics
- When explaining cellular processes
- When studying genetic mechanisms
- When preparing educational content
Key Concepts
DNA Structure
- Double helix: Antiparallel strands
- Base pairing: A-T, G-C
- Sugar-phosphate backbone
- Major and minor grooves
RNA Types
- mRNA: Messenger, template for protein
- tRNA: Transfer, brings amino acids
- rRNA: Ribosomal, catalytic core
- miRNA: Micro, gene silencing
- snRNA: Small nuclear, splicing
Protein Structure
# Protein structure levels
protein_structure = {
'primary': 'Amino acid sequence',
'secondary': 'Alpha helices, beta sheets',
'tertiary': '3D folding',
'quaternary': 'Multi-subunit complexes'
}
# Amino acid properties
amino_acid_groups = {
'nonpolar': 'A, V, I, L, M, F, W, P',
'polar': 'S, T, C, Y, N, Q',
'charged_positive': 'K, R, H',
'charged_negative': 'D, E'
}
Genetic Code
- 64 codons: 61 sense + 3 stop
- Degenerate: Multiple codons per amino acid
- Universal (with exceptions)
- Start codon: AUG (Methionine)
- Stop codons: UAA, UAG, UGA
1---2name: molecular3description: Molecular biology fundamentals4license: MIT5---67## What I do89- Explain molecular processes in cells10- Describe nucleic acid structure and function11- Discuss protein synthesis and function12- Explain genetic information flow13- Connect genes to cellular function14- Apply molecular biology techniques1516## When to use me1718- When learning molecular biology basics19- When explaining cellular processes20- When studying genetic mechanisms21- When preparing educational content2223## Key Concepts2425### DNA Structure2627- Double helix: Antiparallel strands28- Base pairing: A-T, G-C29- Sugar-phosphate backbone30- Major and minor grooves3132### RNA Types3334- **mRNA**: Messenger, template for protein35- **tRNA**: Transfer, brings amino acids36- **rRNA**: Ribosomal, catalytic core37- **miRNA**: Micro, gene silencing38- **snRNA**: Small nuclear, splicing3940### Protein Structure4142```python43# Protein structure levels44protein_structure = {45 'primary': 'Amino acid sequence',46 'secondary': 'Alpha helices, beta sheets',47 'tertiary': '3D folding',48 'quaternary': 'Multi-subunit complexes'49}5051# Amino acid properties52amino_acid_groups = {53 'nonpolar': 'A, V, I, L, M, F, W, P',54 'polar': 'S, T, C, Y, N, Q',55 'charged_positive': 'K, R, H',56 'charged_negative': 'D, E'57}58```5960### Genetic Code6162- 64 codons: 61 sense + 3 stop63- Degenerate: Multiple codons per amino acid64- Universal (with exceptions)65- Start codon: AUG (Methionine)66- Stop codons: UAA, UAG, UGA