bio-single-cell-metabolite-communication
Analyze metabolite-mediated cell-cell communication using MeboCost for metabolic signaling inference between cell types. Predict metabolite secretion and sensing patterns from scRNA-seq data. Use when studying metabolic crosstalk between cell populations or metabolite-receptor interactions.
Best use case
bio-single-cell-metabolite-communication is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Analyze metabolite-mediated cell-cell communication using MeboCost for metabolic signaling inference between cell types. Predict metabolite secretion and sensing patterns from scRNA-seq data. Use when studying metabolic crosstalk between cell populations or metabolite-receptor interactions.
Teams using bio-single-cell-metabolite-communication should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/bio-single-cell-metabolite-communication/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How bio-single-cell-metabolite-communication Compares
| Feature / Agent | bio-single-cell-metabolite-communication | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Analyze metabolite-mediated cell-cell communication using MeboCost for metabolic signaling inference between cell types. Predict metabolite secretion and sensing patterns from scRNA-seq data. Use when studying metabolic crosstalk between cell populations or metabolite-receptor interactions.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
## Version Compatibility
Reference examples tested with: matplotlib 3.8+, scanpy 1.10+
Before using code patterns, verify installed versions match. If versions differ:
- Python: `pip show <package>` then `help(module.function)` to check signatures
If code throws ImportError, AttributeError, or TypeError, introspect the installed
package and adapt the example to match the actual API rather than retrying.
# Metabolite-Mediated Cell Communication
**"Analyze metabolic crosstalk between cell types"** → Predict metabolite secretion-sensing interactions between cell populations based on enzyme and transporter expression patterns.
- Python: `mebocost.MeboCost(adata, groupby='cell_type')` → `run_mebocost()`
## MeboCost Overview
MeboCost infers metabolite-mediated communication by:
1. Predicting metabolite secretion from enzyme expression
2. Identifying metabolite-sensing receptors
3. Computing communication scores between cell types
## Basic Workflow
**Goal:** Infer metabolite-mediated cell-cell communication from scRNA-seq data by predicting which cell types secrete and sense specific metabolites.
**Approach:** Initialize a MeboCost object from an AnnData with cell type annotations, run permutation-based communication inference to score metabolite secretion-sensing interactions, then filter for statistically significant pairs.
```python
import mebocost as mbc
import scanpy as sc
# Load scRNA-seq data
adata = sc.read_h5ad('adata.h5ad')
# Initialize MeboCost
mebo = mbc.create_obj(
adata=adata,
group_col='cell_type', # Cell type annotation column
species='human' # 'human' or 'mouse'
)
# Infer metabolite communication
mebo.infer_commu(
n_permutations=1000, # Permutations for significance testing
seed=42
)
# Get significant interactions
sig_interactions = mebo.commu_res[mebo.commu_res['pval'] < 0.05]
```
## Prepare Data
```python
import scanpy as sc
def prepare_for_mebocost(adata, cell_type_col='cell_type', min_cells=50):
'''Prepare AnnData for MeboCost analysis
Requirements:
- Log-normalized expression (sc.pp.normalize_total, sc.pp.log1p)
- Cell type annotations
- Gene symbols (not Ensembl IDs)
'''
# Check normalization
if adata.X.max() > 50:
print('Warning: Data may not be log-normalized')
# Filter rare cell types
cell_counts = adata.obs[cell_type_col].value_counts()
valid_types = cell_counts[cell_counts >= min_cells].index
adata = adata[adata.obs[cell_type_col].isin(valid_types)].copy()
print(f'Cell types: {len(valid_types)}')
print(f'Cells: {adata.n_obs}')
return adata
```
## Run Communication Analysis
```python
def run_mebocost(adata, cell_type_col='cell_type', species='human'):
'''Run MeboCost metabolite communication analysis
Args:
adata: AnnData with log-normalized expression
cell_type_col: Column with cell type annotations
species: 'human' or 'mouse'
Returns:
MeboCost object with communication results
'''
import mebocost as mbc
# Create MeboCost object
mebo = mbc.create_obj(
adata=adata,
group_col=cell_type_col,
species=species
)
# Infer enzyme-metabolite-receptor communication
# n_permutations: Higher = more accurate p-values but slower
# 1000 is standard; use 100 for quick exploration
mebo.infer_commu(n_permutations=1000, seed=42)
return mebo
```
## Analyze Results
```python
def analyze_metabolite_communication(mebo, pval_threshold=0.05):
'''Extract and summarize significant communications
Communication flow:
Sender cell -> Enzyme -> Metabolite -> Receptor -> Receiver cell
'''
results = mebo.commu_res.copy()
# Filter significant interactions
sig = results[results['pval'] < pval_threshold]
# Summary statistics
summary = {
'total_interactions': len(results),
'significant_interactions': len(sig),
'unique_metabolites': sig['metabolite'].nunique(),
'unique_sender_types': sig['sender'].nunique(),
'unique_receiver_types': sig['receiver'].nunique()
}
# Top metabolites by frequency
top_metabolites = sig['metabolite'].value_counts().head(10)
# Top sender-receiver pairs
sig['pair'] = sig['sender'] + ' -> ' + sig['receiver']
top_pairs = sig['pair'].value_counts().head(10)
return {
'summary': summary,
'top_metabolites': top_metabolites,
'top_pairs': top_pairs,
'significant_interactions': sig
}
```
## Visualization
```python
def plot_communication_network(mebo, pval_threshold=0.05):
'''Plot metabolite communication network'''
import matplotlib.pyplot as plt
# Filter significant
sig = mebo.commu_res[mebo.commu_res['pval'] < pval_threshold]
# Aggregate by cell type pair
pair_counts = sig.groupby(['sender', 'receiver']).size().reset_index(name='count')
# Create chord diagram or heatmap
pivot = pair_counts.pivot(index='sender', columns='receiver', values='count')
pivot = pivot.fillna(0)
plt.figure(figsize=(10, 8))
plt.imshow(pivot.values, cmap='Reds')
plt.xticks(range(len(pivot.columns)), pivot.columns, rotation=45, ha='right')
plt.yticks(range(len(pivot.index)), pivot.index)
plt.colorbar(label='Number of interactions')
plt.xlabel('Receiver')
plt.ylabel('Sender')
plt.title('Metabolite Communication Network')
plt.tight_layout()
return plt.gcf()
def plot_metabolite_flow(mebo, metabolite, pval_threshold=0.05):
'''Visualize communication flow for specific metabolite'''
sig = mebo.commu_res[
(mebo.commu_res['metabolite'] == metabolite) &
(mebo.commu_res['pval'] < pval_threshold)
]
print(f'\n{metabolite} communication:')
for _, row in sig.iterrows():
print(f" {row['sender']} ({row['enzyme']}) -> "
f"{row['receiver']} ({row['receptor']})")
print(f" Score: {row['commu_score']:.3f}, p-value: {row['pval']:.4f}")
```
## Compare Conditions
```python
def compare_conditions(adata, condition_col, cell_type_col, species='human'):
'''Compare metabolite communication between conditions
Useful for:
- Tumor vs normal
- Treatment vs control
- Disease vs healthy
'''
import mebocost as mbc
conditions = adata.obs[condition_col].unique()
results = {}
for condition in conditions:
adata_subset = adata[adata.obs[condition_col] == condition].copy()
mebo = mbc.create_obj(
adata=adata_subset,
group_col=cell_type_col,
species=species
)
mebo.infer_commu(n_permutations=1000, seed=42)
results[condition] = mebo.commu_res
# Find differential communications
# Interactions significant in one condition but not another
return results
```
## Metabolite Categories
```python
# MeboCost includes curated metabolite-receptor pairs
# Major categories:
METABOLITE_CATEGORIES = {
'amino_acids': ['Glutamine', 'Glutamate', 'Tryptophan', 'Arginine'],
'lipids': ['Prostaglandin E2', 'Leukotriene B4', 'Sphingosine-1-phosphate'],
'nucleotides': ['ATP', 'Adenosine', 'UDP'],
'vitamins': ['Retinoic acid', 'Vitamin D'],
'other': ['Lactate', 'Succinate', 'Itaconate']
}
def filter_by_category(results, category):
'''Filter results to specific metabolite category'''
metabolites = METABOLITE_CATEGORIES.get(category, [])
return results[results['metabolite'].isin(metabolites)]
```
## Related Skills
- single-cell/cell-communication - Ligand-receptor communication analysis
- metabolomics/pathway-mapping - Metabolic pathway context
- systems-biology/flux-balance-analysis - Metabolic flux predictionsRelated Skills
tooluniverse-single-cell
Production-ready single-cell and expression matrix analysis using scanpy, anndata, and scipy. Performs scRNA-seq QC, normalization, PCA, UMAP, Leiden/Louvain clustering, differential expression (Wilcoxon, t-test, DESeq2), cell type annotation, per-cell-type statistical analysis, gene-expression correlation, batch correction (Harmony), trajectory inference, and cell-cell communication analysis. NEW: Analyzes ligand-receptor interactions between cell types using OmniPath (CellPhoneDB, CellChatDB), scores communication strength, identifies signaling cascades, and handles multi-subunit receptor complexes. Integrates with ToolUniverse gene annotation tools (HPA, Ensembl, MyGene, UniProt) and enrichment tools (gseapy, PANTHER, STRING). Supports h5ad, 10X, CSV/TSV count matrices, and pre-annotated datasets. Use when analyzing single-cell RNA-seq data, studying cell-cell interactions, performing cell type differential expression, computing gene-expression correlations by cell type, analyzing tumor-immune communication, or answering questions about scRNA-seq datasets.
single-trajectory-analysis
Guide to reproducing OmicVerse trajectory workflows spanning PAGA, Palantir, VIA, velocity coupling, and fate scoring notebooks.
single2spatial-spatial-mapping
Map scRNA-seq atlases onto spatial transcriptomics slides using omicverse's Single2Spatial workflow for deep-forest training, spot-level assessment, and marker visualisation.
single-cell-preprocessing-with-omicverse
Walk through omicverse's single-cell preprocessing tutorials to QC PBMC3k data, normalise counts, detect HVGs, and run PCA/embedding pipelines on CPU, CPU–GPU mixed, or GPU stacks.
single-cell-multi-omics-integration
Quick-reference sheet for OmicVerse tutorials spanning MOFA, GLUE pairing, SIMBA integration, TOSICA transfer, and StaVIA cartography.
single-cell-downstream-analysis
Checklist-style reference for OmicVerse downstream tutorials covering AUCell scoring, metacell DEG, and related exports.
single-cell-clustering-and-batch-correction-with-omicverse
Guide Claude through omicverse's single-cell clustering workflow, covering preprocessing, QC, multimethod clustering, topic modeling, cNMF, and cross-batch integration as demonstrated in t_cluster.ipynb and t_single_batch.ipynb.
single-cell-cellphonedb-communication-mapping
Run omicverse's CellPhoneDB v5 wrapper on annotated single-cell data to infer ligand-receptor networks and produce CellChat-style visualisations.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations. Use when users request QC analysis, filtering low-quality cells, assessing data quality, or following scverse/scanpy best practices for single-cell analysis.
single-cell-annotation-skills-with-omicverse
Guide Claude through SCSA, MetaTiME, CellVote, CellMatch, GPTAnno, and weighted KNN transfer workflows for annotating single-cell modalities.
cellxgene-census
Query CZ CELLxGENE Census (61M+ cells). Filter by cell type/tissue/disease, retrieve expression data, integrate with scanpy/PyTorch, for population-scale single-cell analysis.
cell-free-expression
Guidance for cell-free protein synthesis (CFPS) optimization. Use when: (1) Planning CFPS experiments, (2) Troubleshooting low yield or aggregation, (3) Optimizing DNA template design for CFPS, (4) Expressing difficult proteins (disulfide-rich, toxic, membrane).