Lipidomics Analysis
Integrated pipeline for lipid identification, classification, pathway mapping, and disease association analysis. Distinct from general metabolomics because lipids have unique classification systems (LIPID MAPS), specialized pathways (sphingolipid, eicosanoid, steroid), and disease associations (cardiovascular, neurodegeneration, metabolic syndrome).
Reasoning Strategy
Lipid identification starts with mass spectrometry: the lipid class is determined by the head group fragment mass (e.g., m/z 184 for phosphocholine in positive mode), total chain length and saturation from the precursor exact mass, and individual fatty acid chains from neutral loss or product ion scans. LIPID MAPS classification organizes lipids by chemical structure into 8 categories — knowing the category immediately tells you the likely biological context (sphingolipids → apoptosis/neurodegeneration; glycerophospholipids → membrane remodeling; eicosanoids → inflammation). Structural specificity matters biologically: Cer(d18:1/16:0) and Cer(d18:1/24:1) have different membrane properties and disease associations despite being the same lipid class. Always map changed lipids back to metabolic pathways because lipids are intermediates — an elevated ceramide could mean increased synthesis (CERS activity up), decreased degradation (ASAH1 down), or shunting from sphingomyelin (SMPD1 up).
LOOK UP DON'T GUESS: Do not assume a lipid's LIPID MAPS ID, exact mass, or pathway membership — query LipidMaps_search_by_name first. Do not guess which diseases are associated with a lipid class; retrieve them from HMDB or CTD.
Key principles:
- LIPID MAPS classification first — use the 8-category system (fatty acyls, glycerolipids, glycerophospholipids, sphingolipids, sterol lipids, prenol lipids, saccharolipids, polyketides)
- Structural specificity matters — chain length, unsaturation, and sn-position affect biological function
- Connect to pathways — lipids are metabolic intermediates; always map to biosynthesis/degradation pathways
- Disease context — many lipids are disease biomarkers (sphingolipids in neurodegeneration, oxidized lipids in CVD)
- Evidence grading — T1: clinical biomarker studies, T2: mechanistic studies, T3: association data, T4: computational prediction
When to Use
- "Identify this lipid species from m/z and retention time"
- "What pathways involve ceramide/sphingomyelin?"
- "Lipid biomarkers for Alzheimer's disease"
- "What diseases are associated with altered sphingolipid metabolism?"
- "Map my lipidomics results to KEGG pathways"
- "Compare lipid profiles between conditions"
Not this skill: For general metabolomics (amino acids, sugars, organic acids), use tooluniverse-metabolomics. For drug ADMET properties, use tooluniverse-admet-prediction.
Core Tools
| Tool |
Use For |
LipidMaps_search_by_name |
Lipid identification by name, abbreviation, or mass |
LipidMaps_get_compound_by_id |
Detailed lipid info (structure, classification, pathways) |
HMDB_search / HMDB_get_metabolite |
Lipid metabolite details, disease associations |
kegg_search_pathway |
Lipid metabolism pathways (keyword=sphingolipid, glycerolipid, etc.) |
KEGG_get_pathway_genes |
Enzymes in lipid pathways |
PubChem_get_compound_properties_by_CID |
Chemical properties (mass, formula, SMILES) |
CTD_get_gene_diseases |
Gene-disease links for lipid metabolism enzymes |
DisGeNET_search_gene |
Disease associations for lipid genes |
PubMed_search_articles |
Published lipidomics studies |
OpenTargets_get_associated_drugs_by_target_ensemblID |
Drugs targeting lipid metabolism enzymes |
Workflow
Phase 0: Lipid Identity Resolution
Name/mass/abbreviation → LIPID MAPS ID → classification
|
Phase 1: Structural Classification
LIPID MAPS 8-category system → subclass → molecular species
|
Phase 2: Pathway Mapping
KEGG lipid metabolism → biosynthesis/degradation enzymes
|
Phase 3: Disease Associations
CTD/DisGeNET/HMDB → lipid-disease links with evidence
|
Phase 4: Interpretation & Report
Biological significance → biomarker potential → recommendations
Phase 0: Lipid Identity Resolution
LipidMaps_search_by_name(query="ceramide") → LMSP ID, exact mass, classification
HMDB_search(compound_name="ceramide") → HMDB ID, disease links
PubChem_get_CID_by_compound_name(name="ceramide") → CID, SMILES
LIPID MAPS search tips:
- Generic names work well: "ceramide", "sphingomyelin", "phosphatidylcholine"
- Species-level abbreviations like "Cer(d18:1/16:0)" may return 0 results — use the generic class name first, then filter by chain length from results
- For exact mass search: use
LipidMaps_search_by_formula with molecular formula (e.g., "C34H67NO3")
- If name search fails, try PubChem:
PubChem_get_CID_by_compound_name(name="C16 Ceramide") then cross-reference
Phase 1: Structural Classification
Use LipidMaps_get_compound_by_id to retrieve the LIPID MAPS 8-category classification (FA, GL, GP, SP, ST, PR, SL, PK) for any lipid. The category immediately signals biological context: SP (sphingolipids) → apoptosis/neurodegeneration; GP (glycerophospholipids) → membrane remodeling; FA-derived eicosanoids → inflammation.
Phase 2: Pathway Mapping
Key lipid metabolism pathways in KEGG:
| Pathway |
KEGG ID |
Key Enzymes |
Disease Relevance |
| Sphingolipid metabolism |
hsa00600 |
SMPD1, CERS1-6, ASAH1 |
Niemann-Pick, Fabry, Gaucher |
| Glycerophospholipid metabolism |
hsa00564 |
PLA2, LPCAT, LPIN |
Barth syndrome, atherosclerosis |
| Arachidonic acid metabolism |
hsa00590 |
COX1/2, LOX, CYP450 |
Inflammation, asthma, CVD |
| Steroid biosynthesis |
hsa00100 |
HMGCR, CYP51A1, DHCR7 |
Hypercholesterolemia, Smith-Lemli-Opitz |
| Fatty acid biosynthesis |
hsa00061 |
FASN, ACC, SCD |
Obesity, NAFLD, cancer |
| Fatty acid degradation |
hsa00071 |
CPT1, ACADM, HADHA |
MCAD deficiency, VLCAD deficiency |
| Bile acid biosynthesis |
hsa00120 |
CYP7A1, CYP27A1 |
Cholestasis, gallstones |
| Ether lipid metabolism |
hsa00565 |
AGPS, GNPAT |
Rhizomelic chondrodysplasia |
# Map lipids to pathways
kegg_search_pathway(keyword="sphingolipid") # → hsa00600
KEGG_get_pathway_genes(pathway_id="hsa00600") # → SMPD1, CERS1, ...
Phase 3: Disease Associations
For each lipid or lipid enzyme, check disease links:
CTD_get_gene_diseases(input_terms="SMPD1") # sphingomyelinase → Niemann-Pick
DisGeNET_search_gene(gene="SMPD1") # broader disease associations
HMDB_get_metabolite(compound_name="ceramide") # metabolite-disease links
PubMed_search_articles(query="ceramide biomarker Alzheimer") # clinical evidence
Disease context: Ceramide elevation → apoptosis, Alzheimer's, insulin resistance. Sphingomyelin depletion → Niemann-Pick. Oxidized phospholipids → CVD. Altered bile acid ratios → NAFLD, cholestasis. Eicosanoid elevation → inflammation. Always verify via HMDB or CTD rather than relying on memory.
Phase 4: Interpretation & Report
Computational procedure: Lipid class enrichment analysis
# When user provides a list of significantly changed lipids
import pandas as pd
from scipy.stats import fisher_exact
# Input: list of changed lipids with LIPID MAPS categories
changed = pd.DataFrame({
'lipid': ['Cer(d18:1/16:0)', 'SM(d18:1/16:0)', 'PC(16:0/18:1)', 'LPC(18:0)'],
'category': ['SP', 'SP', 'GP', 'GP'],
'direction': ['up', 'down', 'unchanged', 'up'],
'fold_change': [2.1, 0.5, 1.1, 1.8]
})
# Count changed vs unchanged per category
from collections import Counter
changed_cats = Counter(changed[changed['direction'] != 'unchanged']['category'])
total_cats = Counter(changed['category'])
# Report
print("Lipid class enrichment:")
for cat in total_cats:
n_changed = changed_cats.get(cat, 0)
n_total = total_cats[cat]
print(f" {cat}: {n_changed}/{n_total} changed")
# Interpretation
if changed_cats.get('SP', 0) / max(total_cats.get('SP', 1), 1) > 0.5:
print("→ Sphingolipid metabolism is significantly altered")
print(" Consider: apoptosis, neurodegeneration, insulin resistance")
Report structure:
- Lipid Identity — LIPID MAPS classification, structural features
- Pathway Context — which metabolic pathways are affected
- Disease Associations — evidence-graded disease links
- Biomarker Assessment — clinical utility of identified lipid changes
- Mechanistic Model — how lipid changes connect to disease biology
- Recommendations — validation experiments, clinical follow-up
Limitations
- No raw MS data processing — this skill interprets identified lipids, not raw spectra. Use LipidSearch, MS-DIAL, or LipiDex for identification first.
- LIPID MAPS coverage — some rare or novel lipid species may not be in the database
- Quantitative thresholds — fold-change cutoffs are context-dependent; the skill provides frameworks, not universal thresholds
- Species-specific — most disease data is human; rat/mouse lipid metabolism can differ significantly
1---2name: tooluniverse-lipidomics3description: Lipid analysis and lipid-disease associations using LIPID MAPS classification, HMDB metabolite data, KEGG/Reactome lipid pathways (sphingolipid, eicosanoid, steroid, fatty acid), and PubChem chemical info. Use for lipid identification, lipid metabolism pathway mapping, and lipid-associated disease analysis (cardiovascular, diabetes, NAFLD).4---5
6# Lipidomics Analysis
7
8Integrated pipeline for lipid identification, classification, pathway mapping, and disease association analysis. Distinct from general metabolomics because lipids have unique classification systems (LIPID MAPS), specialized pathways (sphingolipid, eicosanoid, steroid), and disease associations (cardiovascular, neurodegeneration, metabolic syndrome).
9
10## Reasoning Strategy
11
12Lipid identification starts with mass spectrometry: the lipid class is determined by the head group fragment mass (e.g., m/z 184 for phosphocholine in positive mode), total chain length and saturation from the precursor exact mass, and individual fatty acid chains from neutral loss or product ion scans. LIPID MAPS classification organizes lipids by chemical structure into 8 categories — knowing the category immediately tells you the likely biological context (sphingolipids → apoptosis/neurodegeneration; glycerophospholipids → membrane remodeling; eicosanoids → inflammation). Structural specificity matters biologically: Cer(d18:1/16:0) and Cer(d18:1/24:1) have different membrane properties and disease associations despite being the same lipid class. Always map changed lipids back to metabolic pathways because lipids are intermediates — an elevated ceramide could mean increased synthesis (CERS activity up), decreased degradation (ASAH1 down), or shunting from sphingomyelin (SMPD1 up).
13
14**LOOK UP DON'T GUESS**: Do not assume a lipid's LIPID MAPS ID, exact mass, or pathway membership — query `LipidMaps_search_by_name` first. Do not guess which diseases are associated with a lipid class; retrieve them from HMDB or CTD.
15
16**Key principles**:
171. **LIPID MAPS classification first** — use the 8-category system (fatty acyls, glycerolipids, glycerophospholipids, sphingolipids, sterol lipids, prenol lipids, saccharolipids, polyketides)
182. **Structural specificity matters** — chain length, unsaturation, and sn-position affect biological function
193. **Connect to pathways** — lipids are metabolic intermediates; always map to biosynthesis/degradation pathways
204. **Disease context** — many lipids are disease biomarkers (sphingolipids in neurodegeneration, oxidized lipids in CVD)
215. **Evidence grading** — T1: clinical biomarker studies, T2: mechanistic studies, T3: association data, T4: computational prediction
22
23---
24
25## When to Use
26
27- "Identify this lipid species from m/z and retention time"
28- "What pathways involve ceramide/sphingomyelin?"
29- "Lipid biomarkers for Alzheimer's disease"
30- "What diseases are associated with altered sphingolipid metabolism?"
31- "Map my lipidomics results to KEGG pathways"
32- "Compare lipid profiles between conditions"
33
34**Not this skill**: For general metabolomics (amino acids, sugars, organic acids), use `tooluniverse-metabolomics`. For drug ADMET properties, use `tooluniverse-admet-prediction`.
35
36---
37
38## Core Tools
39
40| Tool | Use For |
41|------|---------|
42| `LipidMaps_search_by_name` | Lipid identification by name, abbreviation, or mass |
43| `LipidMaps_get_compound_by_id` | Detailed lipid info (structure, classification, pathways) |
44| `HMDB_search` / `HMDB_get_metabolite` | Lipid metabolite details, disease associations |
45| `kegg_search_pathway` | Lipid metabolism pathways (keyword=`sphingolipid`, `glycerolipid`, etc.) |
46| `KEGG_get_pathway_genes` | Enzymes in lipid pathways |
47| `PubChem_get_compound_properties_by_CID` | Chemical properties (mass, formula, SMILES) |
48| `CTD_get_gene_diseases` | Gene-disease links for lipid metabolism enzymes |
49| `DisGeNET_search_gene` | Disease associations for lipid genes |
50| `PubMed_search_articles` | Published lipidomics studies |
51| `OpenTargets_get_associated_drugs_by_target_ensemblID` | Drugs targeting lipid metabolism enzymes |
52
53---
54
55## Workflow
56
57```
58Phase 0: Lipid Identity Resolution
59 Name/mass/abbreviation → LIPID MAPS ID → classification
60 |
61Phase 1: Structural Classification
62 LIPID MAPS 8-category system → subclass → molecular species
63 |
64Phase 2: Pathway Mapping
65 KEGG lipid metabolism → biosynthesis/degradation enzymes
66 |
67Phase 3: Disease Associations
68 CTD/DisGeNET/HMDB → lipid-disease links with evidence
69 |
70Phase 4: Interpretation & Report
71 Biological significance → biomarker potential → recommendations
72```
73
74### Phase 0: Lipid Identity Resolution
75
76```
77LipidMaps_search_by_name(query="ceramide") → LMSP ID, exact mass, classification
78HMDB_search(compound_name="ceramide") → HMDB ID, disease links
79PubChem_get_CID_by_compound_name(name="ceramide") → CID, SMILES
80```
81
82**LIPID MAPS search tips**:
83- Generic names work well: "ceramide", "sphingomyelin", "phosphatidylcholine"
84- Species-level abbreviations like "Cer(d18:1/16:0)" may return 0 results — use the generic class name first, then filter by chain length from results
85- For exact mass search: use `LipidMaps_search_by_formula` with molecular formula (e.g., "C34H67NO3")
86- If name search fails, try PubChem: `PubChem_get_CID_by_compound_name(name="C16 Ceramide")` then cross-reference
87
88### Phase 1: Structural Classification
89
90Use `LipidMaps_get_compound_by_id` to retrieve the LIPID MAPS 8-category classification (FA, GL, GP, SP, ST, PR, SL, PK) for any lipid. The category immediately signals biological context: SP (sphingolipids) → apoptosis/neurodegeneration; GP (glycerophospholipids) → membrane remodeling; FA-derived eicosanoids → inflammation.
91
92### Phase 2: Pathway Mapping
93
94Key lipid metabolism pathways in KEGG:
95
96| Pathway | KEGG ID | Key Enzymes | Disease Relevance |
97|---------|---------|-------------|-------------------|
98| Sphingolipid metabolism | hsa00600 | SMPD1, CERS1-6, ASAH1 | Niemann-Pick, Fabry, Gaucher |
99| Glycerophospholipid metabolism | hsa00564 | PLA2, LPCAT, LPIN | Barth syndrome, atherosclerosis |
100| Arachidonic acid metabolism | hsa00590 | COX1/2, LOX, CYP450 | Inflammation, asthma, CVD |
101| Steroid biosynthesis | hsa00100 | HMGCR, CYP51A1, DHCR7 | Hypercholesterolemia, Smith-Lemli-Opitz |
102| Fatty acid biosynthesis | hsa00061 | FASN, ACC, SCD | Obesity, NAFLD, cancer |
103| Fatty acid degradation | hsa00071 | CPT1, ACADM, HADHA | MCAD deficiency, VLCAD deficiency |
104| Bile acid biosynthesis | hsa00120 | CYP7A1, CYP27A1 | Cholestasis, gallstones |
105| Ether lipid metabolism | hsa00565 | AGPS, GNPAT | Rhizomelic chondrodysplasia |
106
107```python
108# Map lipids to pathways
109kegg_search_pathway(keyword="sphingolipid") # → hsa00600
110KEGG_get_pathway_genes(pathway_id="hsa00600") # → SMPD1, CERS1, ...
111```
112
113### Phase 3: Disease Associations
114
115For each lipid or lipid enzyme, check disease links:
116
117```python
118CTD_get_gene_diseases(input_terms="SMPD1") # sphingomyelinase → Niemann-Pick
119DisGeNET_search_gene(gene="SMPD1") # broader disease associations
120HMDB_get_metabolite(compound_name="ceramide") # metabolite-disease links
121PubMed_search_articles(query="ceramide biomarker Alzheimer") # clinical evidence
122```
123
124**Disease context**: Ceramide elevation → apoptosis, Alzheimer's, insulin resistance. Sphingomyelin depletion → Niemann-Pick. Oxidized phospholipids → CVD. Altered bile acid ratios → NAFLD, cholestasis. Eicosanoid elevation → inflammation. Always verify via HMDB or CTD rather than relying on memory.
125
126### Phase 4: Interpretation & Report
127
128**Computational procedure: Lipid class enrichment analysis**
129
130```python
131# When user provides a list of significantly changed lipids
132import pandas as pd
133from scipy.stats import fisher_exact
134
135# Input: list of changed lipids with LIPID MAPS categories
136changed = pd.DataFrame({
137 'lipid': ['Cer(d18:1/16:0)', 'SM(d18:1/16:0)', 'PC(16:0/18:1)', 'LPC(18:0)'],
138 'category': ['SP', 'SP', 'GP', 'GP'],
139 'direction': ['up', 'down', 'unchanged', 'up'],
140 'fold_change': [2.1, 0.5, 1.1, 1.8]
141})
142
143# Count changed vs unchanged per category
144from collections import Counter
145changed_cats = Counter(changed[changed['direction'] != 'unchanged']['category'])
146total_cats = Counter(changed['category'])
147
148# Report
149print("Lipid class enrichment:")
150for cat in total_cats:
151 n_changed = changed_cats.get(cat, 0)
152 n_total = total_cats[cat]
153 print(f" {cat}: {n_changed}/{n_total} changed")
154
155# Interpretation
156if changed_cats.get('SP', 0) / max(total_cats.get('SP', 1), 1) > 0.5:
157 print("→ Sphingolipid metabolism is significantly altered")
158 print(" Consider: apoptosis, neurodegeneration, insulin resistance")
159```
160
161**Report structure**:
1621. **Lipid Identity** — LIPID MAPS classification, structural features
1632. **Pathway Context** — which metabolic pathways are affected
1643. **Disease Associations** — evidence-graded disease links
1654. **Biomarker Assessment** — clinical utility of identified lipid changes
1665. **Mechanistic Model** — how lipid changes connect to disease biology
1676. **Recommendations** — validation experiments, clinical follow-up
168
169---
170
171## Limitations
172
173- **No raw MS data processing** — this skill interprets identified lipids, not raw spectra. Use LipidSearch, MS-DIAL, or LipiDex for identification first.
174- **LIPID MAPS coverage** — some rare or novel lipid species may not be in the database
175- **Quantitative thresholds** — fold-change cutoffs are context-dependent; the skill provides frameworks, not universal thresholds
176- **Species-specific** — most disease data is human; rat/mouse lipid metabolism can differ significantly