Agent skill · Data & Analytics

bio-single-cell-multimodal-integration

Analyze multi-modal single-cell data (CITE-seq, Multiome, spatial). Use when working with data that measures multiple modalities per cell like RNA + protein or RNA + ATAC. Use when analyzing CITE-seq, Multiome, or other multi-modal single-cell data.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill multimodal-integration-gptomics-bioskills-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/ai-ml/multimodal-integration-gptomics-bioskills-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Multimodal Integration Analyze multi-modal single-cell data where multiple measurements are made per cell. ## Common Modalities | Technology | Modalities | Package | |------------|------------|---------| | CITE-seq | RNA + surface proteins (ADT) | Seurat | | 10X Multiome | RNA + ATAC | Seurat, Signac, ArchR | | SHARE-seq | RNA + ATAC | Seurat, Signac | | Spatial (Visium) | RNA + spatial coordinates | Seurat, Squidpy | ## CITE-seq Analysis (Seurat) ### Load Data ```r library(Seurat) # Read 10X data with antibody capture data <- Read10X('filtered_feature_bc_matrix/') # Separate RNA and ADT rna_counts <- data$`Gene Expression` adt_counts <- data$`Antibody Capture` # Create Seurat object with both assays obj <- CreateSeuratObject(counts = rna_counts, assay = 'RNA') obj[['ADT']] <- CreateAssayObject(counts = adt_counts) ``` ### QC and Normalization ```r # RNA QC (standard) obj <- PercentageFeatureSet(obj, pattern = '^MT-', col.name = 'percent.mt') obj <- subset(obj, nFeature_RNA > 200 & percent.mt < 20) # Normalize RNA obj <- NormalizeData(obj, assay = 'RNA') obj <- FindVariableFeatures(obj, assay = 'RNA') obj <- ScaleData(obj, assay = 'RNA') # Normalize ADT (CLR normalization) obj <-

What's inside
Steps it walks through
  1. Common Modalities
  2. CITE-seq Analysis (Seurat)
  3. Load Data
  4. QC and Normalization
  5. Weighted Nearest Neighbor (WNN) Clustering
  6. Visualize
  7. 10X Multiome (RNA + ATAC)
  8. Process ATAC
  9. Joint Analysis
  10. Scanpy/MuData (Python)
  11. CITE-seq with MuData
  12. Integration Metrics
  13. Modality Weights
  14. Correlation Between Modalities
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the bio-single-cell-multimodal-integration skill do?

Analyze multi-modal single-cell data (CITE-seq, Multiome, spatial). Use when working with data that measures multiple modalities per cell like RNA + protein or RNA + ATAC. Use when analyzing CITE-seq, Multiome, or other multi-modal single-cell data.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill multimodal-integration-gptomics-bioskills-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going