Skip to content

Introduction to Biochemistry

Biochemistry is the study of chemical processes within and related to living organisms. It is a subdiscipline of biology and chemistry and can be divided into three fields: structural biology, enzymology, and metabolism.

Biochemical Pathways and Cancer

Cancer cells exhibit altered metabolism compared to normal cells:

  • Warburg Effect: Dependence on glycolysis even in the presence of oxygen
  • Altered Metabolism: Changes in energy production pathways
  • New Therapies: Therapeutic targets based on metabolism

Cancer Enzymology

Enzymes are proteins that catalyze chemical reactions:

  • Kinases: Often hyperactive in cancer
  • Therapeutic Targets: Specific inhibitors for treatment
  • Regulation: Control of enzymatic activity

Computational Applications

Metabolic Analysis

python
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

# Cellular metabolism data
metabolism_data = {
    'cancer_cell': [2.5, 1.8, 3.2, 0.9],
    'normal_cell': [1.0, 1.0, 1.0, 1.0]
}

# Calculate ratios
ratios = np.array(metabolism_data['cancer_cell']) / np.array(metabolism_data['normal_cell'])

# Visualize differences
plt.bar(['Glycolysis', 'Phosphorylation', 'Respiration', 'Lipogenesis'], ratios)
plt.title('Metabolic Alterations in Cancer Cells')
plt.ylabel('Ratio (Cancer/Normal)')
plt.axhline(y=1, color='r', linestyle='--', label='Normal')
plt.legend()
plt.show()

Learning Resources


Cancer biochemistry is the study of alterations in biochemical processes that occur in cancer cells.

Early public release. Content evolves through continuous review. Questions: [email protected] · CC BY 4.0 where applicable.