一键导入
scribble
Multi-omics integration for single-cell data. Use for integrating multiple modalities like RNA, ATAC, and protein in single-cell analysis.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Multi-omics integration for single-cell data. Use for integrating multiple modalities like RNA, ATAC, and protein in single-cell analysis.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Maintain this specific academic website repo safely and consistently. Use this skill whenever the user asks to update, review, polish, reorganize, or extend this website, especially when the request touches homepage identity statements, publications, CV assets, shared templates, or duplicated academic content.
Delegate coding tasks to Claude Code (Anthropic's CLI agent). Use for building features, refactoring, PR reviews, and iterative coding. Requires the claude CLI installed.
Delegate coding tasks to OpenAI Codex CLI agent. Use for building features, refactoring, PR reviews, and batch issue fixing. Requires the codex CLI and a git repository.
Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, reviewing, or refactoring code to avoid overcomplication, make surgical changes, surface assumptions, and define verifiable success criteria.
Complete guide to using and extending Hermes Agent — CLI usage, setup, configuration, spawning additional agents, gateway platforms, skills, voice, tools, profiles, and a concise contributor reference. Load this skill when helping users configure Hermes, troubleshoot issues, spawn agent instances, or make code contributions.
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
| name | scribble |
| domain | compbio |
| description | Multi-omics integration for single-cell data. Use for integrating multiple modalities like RNA, ATAC, and protein in single-cell analysis. |
| license | MIT license |
| metadata | {"skill-author":"Eric Yiru"} |
Scribble is a tool/package for multi-omics integration in single-cell analysis. It provides methods for integrating different modalities (gene expression, chromatin accessibility, protein) to create unified representations of cells.
This skill should be used when:
pip install scribble
# Or from GitHub
pip install git+https://github.com/username/scribble.git
import scribble
import scanpy as sc
import numpy as np
# Load multi-modal data
rna = sc.read_h5ad("rna.h5ad")
atac = sc.read_h5ad("atac.h5ad")
protein = sc.read_h5ad("protein.h5ad")
# Integration
combined = scribble.integrate(
[rna, atac, protein],
method="cca" # or "mnn", "wnn"
)
# Canonical Correlation Analysis
combined = scribble.integrate(
[rna, atac],
method="cca",
n_components=50
)
# Weighted nearest neighbors
combined = scribble.integrate(
[rna, protein],
method="wnn"
)