multimodal-single-cell

multimodal-single-cell is a skill for Claude Code, Codex from inflexa-ai/inflexa. It costs 43 tokens per session (1,835 once invoked), scanned A, original, Apache-2.0.

Multi-modal single-cell analysis for CITE-seq, Multiome, TEA-seq, and DOGMA-seq including joint embedding, per-modality QC, and cross-modal integration.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Install with agentmods
npx agentmods add skills/inflexa-ai/inflexa/multimodal-single-cell
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add inflexa-ai/inflexa --skill multimodal-single-cell
Clone the repo
git clone --depth 1 https://github.com/inflexa-ai/inflexa

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for multimodal-single-cell

README.md
[![agentmods](https://agentmods.dev/badge/skills/inflexa-ai/inflexa/multimodal-single-cell/github.svg)](https://agentmods.dev/skills/inflexa-ai/inflexa/multimodal-single-cell)
Your own site
<a href="https://agentmods.dev/skills/inflexa-ai/inflexa/multimodal-single-cell"><img src="https://agentmods.dev/badge/skills/inflexa-ai/inflexa/multimodal-single-cell/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for multimodal-single-cell

Your own site · 80×15
<a href="https://agentmods.dev/skills/inflexa-ai/inflexa/multimodal-single-cell"><img src="https://agentmods.dev/badge/skills/inflexa-ai/inflexa/multimodal-single-cell.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,835 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin unknown No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.01835
Opus 5 $0.00022 $0.00918
Sonnet 5 $0.00009 $0.00367
Haiku 4.5 $0.00004 $0.00184

Measured today against content hash 937e04bc7be2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

multimodal-single-cell scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/multimodal-single-cell/SKILL.md · 138 lines

How it starts

The opening of the file, as written. The whole thing — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Multimodal Single-Cell Analysis

Method selection and execution guidance for multi-modal single-cell assays (RNA+protein, RNA+ATAC, 3+ modalities).

Data Container

Always use MuData (.h5mu) as the container for multi-modal data. Each modality is a separate AnnData accessible via mdata.mod['rna'], mdata.mod['prot'], mdata.mod['atac'], etc. Do NOT store multiple modalities in a single AnnData object.

Technology Detection and Method Selection

Assay type?
├── CITE-seq (RNA + surface protein)
│   ├── Joint embedding (default)
│   │   ├── TOTALVI (probabilistic, handles protein background noise, default)
│   │   └── WNN via muon (quick baseline, weighted nearest neighbors)
│   └── Per-modality analysis → process RNA and protein separately, then integrate
│
├── Multiome (RNA + ATAC)
│   ├── Joint embedding (default)
│   │   ├── MultiVI (probabilistic, handles missing modalities, default)
│   │   └── GLUE (graph-linked embedding, best for regulatory inference)
│   │       PREREQUISITE: rna.var needs chrom/chromStart/chromEnd, which
│   │       normally require a GTF — none is available. Check whether the
│   │       data already carries them; if not, report the blocker and
│   │       fall back to MultiVI. See references/scglue-api.md.
│   └── Per-modality analysis → scanpy for RNA, muon.atac for ATAC, then combine
│
├── TEA-seq / DOGMA-seq (RNA + protein + ATAC, 3 modalities)
│   └── WNN via muon (most flexible for >2 modalities)
│       ├── Compute per-modality neighbors
│       ├── mu.pp.neighbors(mdata, key_added="wnn", ...) with multi-modal weights
│       └── Cluster on WNN graph
│
└── Other combinations
    └── WNN via muon (generalizes to any number of modalities)

Per-Modality QC

Each modality has distinct noise characteristics. QC must be run separately before integration.

Modality QC:
├── RNA
│   ├── Standard scRNA-seq QC (MAD-based thresholds)
│   ├── n_genes, total_counts, pct_mito
│   └── Doublet detection (scrublet or SOLO)
│
├── Protein (CITE-seq)
│   ├── Isotype control check: background level from isotype control antibodies
│   ├── Ambient protein correction: DSB normalization or CLR (centered log-ratio)
│   ├── Filter proteins with low detection across cells
│   └── Check for antibody aggregation artifacts (unusually high counts across all proteins)
│
└── ATAC
    ├── TSS enrichment score (>2 acceptable, >5 good)
    ├── Nucleosome signal (<4 good, banding pattern in fragment size distribution)
    ├── Fraction of reads in peaks (FRiP > 0.3)
    ├── Total fragments (>1000)
    └── mu.atac.tl.nucleosome_signal(mdata.mod['atac'])

Read the full file on GitHub · 138 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 138 lines · 43 tokens per session scan A 937e04bc7be2

Subscribe to this mod's changes

multimodal-single-cell is a skill published in the GitHub repository inflexa-ai/inflexa (33 stars, last pushed yesterday), licensed Apache-2.0. It adds 43 tokens to every session and 1,835 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-09.

Related

Other skills, from other repositories

alphafold

Skill for protein structure prediction and analysis with AlphaFold. Use this skill whenever a user wants to predict or fetch a protein 3D structure, download structures from the AlphaFold Database (AFDB), run ColabFold for novel proteins, parse pLDDT confidence scores or PAE (predicted aligned error) from AlphaFold…

naity/FM4Life · 141 tokens

esm2

Skill for working with ESM2 protein language models from Meta FAIR. Use this skill whenever the user wants to generate protein embeddings or representations, score variant effects or predict mutation fitness, run contact prediction, or use ESMFold for structure prediction. Also trigger when the user mentions ESM2…

naity/FM4Life · 86 tokens

evo2

Skill for genomic sequence modeling and design with Evo2 from Arc Institute. Use this skill when a user wants to model or generate DNA sequences, score variant effects at single-nucleotide resolution, extract genomic embeddings, analyze mutations in non-coding or coding regions, design synthetic genomic elements…

naity/FM4Life · 153 tokens

prott5

Skill for protein embeddings using ProtTrans models (ProtT5, ProtBERT) from Rostlab. Use this skill whenever a user wants protein embeddings or representations for downstream ML tasks, protein classification (subcellular localization, membrane prediction, secondary structure annotation), similarity search, or…

naity/FM4Life · 146 tokens

lightgbm-analysis

Use when training a LightGBM model on tabular data in R and returning model metrics, feature importance ranking tables, and feature importance plots.

aipoch/medical-research-skills · 34 tokens

cerna-analysis

Use when building a ceRNA regulatory network from a key gene list by combining bundled miRNA-mRNA and miRNA-lncRNA database files, with flat-file CSV exports and PDF visualization in a single output directory. NOT for: differential expression, single-cell analysis, enrichment analysis, or workflows without a key gene…

aipoch/medical-research-skills · 68 tokens