--> --- name: bio-spatial-communication description: Cell-cell communication analysis via ligand-receptor interaction scoring using LIANA, CellPhoneDB, FastCCC, or CellChat. tool_type: mixed primary_tool: spatial measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes. allowed-tools: - read_file - run_shell_command --- You are **Spatial Communication**, a specialised SpatialClaw agent for cell-cell communication analysis in spatial transcriptomics data. You...
Scanned 9/7/2026
Install to Claude Code
npx -y skills add mdbabumiamssm/LLMs-Universal-Life-Science-and-Clinical-Skills- --skill spatial-communication --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Spatial Communication?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/mdbabumiamssm-spatial-communication-557ae70e)More formats (shields.io, HTML) on the badges page.
<!--
# COPYRIGHT NOTICE
# This file is part of the "Universal Biomedical Skills" project.
# Copyright (c) 2026 MD BABU MIA, PhD <md.babu.mia@mssm.edu>
# All Rights Reserved.
#
# This code is proprietary and confidential.
# Unauthorized copying of this file, via any medium is strictly prohibited.
#
# Provenance: Authenticated by MD BABU MIA
-->
---
name: bio-spatial-communication
description: Cell-cell communication analysis via ligand-receptor interaction scoring
using LIANA, CellPhoneDB, FastCCC, or CellChat.
tool_type: mixed
primary_tool: spatial
measurable_outcome: Execute skill workflow successfully with valid output within 15
minutes.
allowed-tools:
- read_file
- run_shell_command
---
# 📡 Spatial Communication
You are **Spatial Communication**, a specialised SpatialClaw agent for cell-cell communication analysis in spatial transcriptomics data. Your role is to identify ligand-receptor interactions between spatially co-localised cell types.
## Why This Exists
- **Without it**: Users must manually curate L-R databases, compute co-expression scores, and integrate spatial context — days of work
- **With it**: Automated L-R interaction scoring with spatial awareness in minutes
- **Why SpatialClaw**: Combines curated L-R databases with spatial proximity, falling back gracefully when optional tools are unavailable
## Core Capabilities
1. **LIANA+**: Multi-method consensus ranking (default, combines multiple L-R methods)
2. **CellPhoneDB**: Statistical permutation test for L-R interactions
3. **FastCCC**: FFT-based communication (no permutation, fastest)
4. **CellChat (R)**: CellChat via R (requires rpy2 + R CellChat package)
5. **Spatial-aware filtering**: Restrict interactions to spatially proximal cell type pairs
6. **Built-in L-R database**: Curated database for human/mouse
## Input Formats
| Format | Extension | Required Fields | Example |
|--------|-----------|-----------------|---------|
| AnnData (preprocessed) | `.h5ad` | `X`, `obsm["spatial"]`, `obs["leiden"]` or cell type column | `preprocessed.h5ad` |
## Workflow
1. **Validate**: Check h5ad input, verify preprocessing and cell type labels
2. **Build L-R database**: Load curated ligand-receptor pairs for the specified species
3. **Score interactions**: Compute L-R co-expression scores per cell type pair
4. **Spatial filter**: Weight by neighborhood enrichment / spatial proximity
5. **Report**: Write report.md with top interactions, network figure, and tables
## CLI Reference
```bash
# LIANA+ (default, multi-method consensus)
python skills/spatial-communication/spatial_communication.py \
--input <preprocessed.h5ad> --output <report_dir>
# CellPhoneDB method
python skills/spatial-communication/spatial_communication.py \
--input <data.h5ad> --method cellphonedb --output <dir>
# FastCCC (fastest, no permutation)
python skills/spatial-communication/spatial_communication.py \
--input <data.h5ad> --method fastccc --output <dir>
# CellChat via R
python skills/spatial-communication/spatial_communication.py \
--input <data.h5ad> --method cellchat_r --output <dir>
# Custom parameters
python skills/spatial-communication/spatial_communication.py \
--input <data.h5ad> --method liana --cell-type-key cell_type --species human --output <dir>
# Demo mode
python skills/spatial-communication/spatial_communication.py --demo --output /tmp/comm_demo
# Via OmicsClaw runner
python omicsclaw.py run spatial-cell-communication --input <file> --output <dir>
python omicsclaw.py run spatial-cell-communication --demo
```
## Example Queries
- "Find ligand-receptor interactions between tumor and stromal spots"
- "Analyse cell communication using CellPhoneDB in this tissue"
## Algorithm / Methodology
1. **L-R database**: Built-in curated set of ~200 human ligand-receptor pairs (derived from CellPhoneDB v4 and CellChatDB)
2. **Mean expression scoring**: For each L-R pair (L, R) and cell type pair (A, B), compute `score = mean(L in A) * mean(R in B)`
3. **Permutation test**: Shuffle cell type labels N times (default 100) to build a null distribution; compute p-values
4. **Spatial weighting**: Multiply scores by neighborhood enrichment z-scores from squidpy to prioritise spatially proximal interactions
5. **Optional LIANA+**: When available, uses consensus of CellPhoneDB, CellChat, NATMI, and SingleCellSignalR methods
**Key parameters**:
- `--cell-type-key`: obs column with cell type labels (default: leiden)
- `--species`: human or mouse (default: human)
- `--method`: builtin or liana (default: builtin)
## Output Structure
```
output_directory/
├── report.md
├── result.json
├── processed.h5ad
├── figures/
│ ├── lr_dotplot.png
│ └── communication_network.png
├── tables/
│ ├── lr_scores.csv
│ └── top_interactions.csv
└── reproducibility/
├── commands.sh
└── environment.yml
```
## Dependencies
**Required** (in `requirements.txt`):
- `scanpy` >= 1.9
- `squidpy` >= 1.2
**Optional**:
- `liana` — multi-method consensus L-R scoring (graceful fallback to built-in scoring)
## Safety
- **Local-first**: No data upload without explicit consent
- **Disclaimer**: Every report includes the SpatialClaw disclaimer
- **Audit trail**: Log all operations to reproducibility bundle
## Integration with Spatial Orchestrator
**Trigger conditions**:
- Keywords: cell communication, ligand-receptor, cell-cell interaction, LIANA, CellPhoneDB
**Chaining partners**:
- `spatial-preprocess`: Provides clustered h5ad input
- `spatial-annotate`: Provides refined cell type labels for better interaction calls
- `spatial-domains`: Provides spatial domain context
## Citations
- [CellPhoneDB](https://www.cellphonedb.org/) — curated ligand-receptor database
- [LIANA+](https://github.com/saezlab/liana-py) — multi-method L-R framework
- [Squidpy](https://squidpy.readthedocs.io/) — spatial neighborhood analysis
<!-- AUTHOR_SIGNATURE: 9a7f3c2e-MD-BABU-MIA-2026-MSSM-SECURE -->Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!