ワンクリックで
metabolomics
Metabolomics-specific analysis strategies and domain knowledge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Metabolomics-specific analysis strategies and domain knowledge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | metabolomics |
| description | Metabolomics-specific analysis strategies and domain knowledge |
| category | domain |
Metabolites have multiple naming conventions:
Always verify metabolite identity before interpreting results.
Metabolites exist in biochemical pathways:
Example pathway:
Glucose → (HK) → G6P → (G6PDH) → 6PG
If G6P ↑ and 6PG unchanged → suggests bottleneck at G6PDH enzyme
Concentration: Amount of metabolite present Flux: Rate of metabolite conversion
Key insight:
Pattern 1: Substrate Depletion
Precursor ↓↓, Product ↑↑
→ Interpretation: Active consumption, increased flux
Pattern 2: Bottleneck
Substrate ↑↑, Product ↓↓ or unchanged
→ Interpretation: Enzymatic bottleneck, blocked conversion
Pattern 3: Pathway Shutdown
All pathway metabolites ↓↓
→ Interpretation: Reduced pathway activity
Pattern 4: Salvage vs De Novo
De novo intermediates ↓, Salvage products ↑
→ Interpretation: Metabolic shift to energy-efficient salvage
When: You have many differentially abundant metabolites
How:
# Group metabolites by pathway
pathway_metabolites = {
"Glycolysis": ["Glucose", "G6P", "F6P", "FBP", ...],
"TCA Cycle": ["Citrate", "Isocitrate", "α-KG", ...],
"Purine Metabolism": ["AMP", "ADP", "ATP", "IMP", ...]
}
# Count hits per pathway
for pathway, metabolites in pathway_metabolites.items():
hits = [m for m in significant_metabolites if m in metabolites]
enrichment_score = len(hits) / len(metabolites)
Resources:
When: You want to infer enzymatic activity
How:
# Simple flux proxy: Product / Substrate
flux_index = data["Product"] / data["Substrate"]
# Compare across groups
t_test(flux_index[group1], flux_index[group2])
Common indices:
When: Assessing cellular energy state
Formula:
# Adenylate energy charge
AEC = (ATP + 0.5*ADP) / (ATP + ADP + AMP)
# Range: 0 (depleted) to 1 (high energy)
# Similar for GTP, CTP, UTP
Interpretation:
When: Investigating oxidative stress or metabolic state
Ratios:
NAD_ratio = NAD+ / NADH # High = oxidized state
NADP_ratio = NADP+ / NADPH # High = oxidative stress
GSH_ratio = GSH / GSSG # Low = oxidative stress
H1: Pathway Shift Hypothesis
"Condition X shifts metabolism from [pathway A] to [pathway B]
due to [mechanism], evidenced by [metabolite pattern]"
H2: Enzymatic Bottleneck Hypothesis
"Enzyme [E] activity is reduced in condition X, causing accumulation
of substrate [S] and depletion of product [P]"
H3: Cofactor Limitation Hypothesis
"Limited availability of cofactor [C] constrains pathway [P],
causing metabolite pattern [M]"
H4: Energy State Hypothesis
"Condition X induces low-energy state, triggering metabolic
reprogramming to salvage pathways"
For pathway context:
"[metabolite] metabolism pathway"
"[metabolite] biosynthesis regulation"
For mechanistic insights:
"[condition] [metabolite] mechanism"
"[enzyme] regulation [condition]"
For flux studies:
"[pathway] flux analysis"
"[metabolite] turnover rate"
❌ Assuming directionality
❌ Ignoring compartmentalization
❌ Overinterpreting single metabolites
❌ Confusing correlation with regulation
❌ Forgetting isomers
Before interpreting results, verify:
Observation: ATP levels decreased 30% (p=0.01)
Step 1: Check related metabolites
# Check adenylate pool
print(data[["ATP", "ADP", "AMP"]])
Step 2: Calculate energy charge
AEC = (ATP + 0.5*ADP) / (ATP + ADP + AMP)
Step 3: Search literature
search_pubmed("[condition] ATP depletion mechanism")
Step 4: Generate hypotheses
Step 5: Test hypotheses
# H2: Check TCA cycle metabolites
tca_metabolites = ["Citrate", "Isocitrate", "α-KG", "Succinate", "Fumarate", "Malate"]
test_pathway(tca_metabolites, group_var)
Metabolism is a network, not a list.
Single metabolite changes are clues, not answers. Build mechanistic models by connecting metabolites through known biochemical pathways.
Genomics and transcriptomics analysis strategies
Reference of available Phenix commands for structural biology analysis
Interpret statistical results and decide what to do next
Skills for querying the JGI Dremio Lakehouse containing GOLD and IMG genomics databases. Use this when users want to explore JGI databases, query GOLD (Genomes OnLine Database), IMG (Integrated Microbial Genomes), or run SQL queries against JGI genomics data. Triggers on mentions of JGI, GOLD database, IMG database, genome metadata, or JGI lakehouse queries.
Skills for querying the KBase/BERDL Datalake via the MCP REST API. Use this when users want to explore KBase databases, list tables, get schemas, sample data, or run SQL queries against the KBase data lake. Triggers on mentions of KBase, BERDL, or requests to query biological/microbiome data stored in KBase.
Statistical analysis strategies and data exploration techniques