Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

single-trajectory-analysis单轨迹分析

Agent Skill

single-trajectory-analysis 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

706

周安装

30

GitHub Stars

964

下载量

247
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:single-trajectory-analysis(单轨迹分析)
来源仓库:https://github.com/starlitnightly/omicverse
仓库路径:skills/single-trajectory-analysis
安装命令:
npx skills add https://github.com/starlitnightly/omicverse --skill single-trajectory-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/starlitnightly/omicverse --skill single-trajectory-analysis

简介

用于查找、检索和筛选单轨迹分析相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 可结合来源仓库和 README 核验具体用法,支持任务场景匹配。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的网络操作。
  • 注意结果需人工复核,确保与实际研究需求一致。

SKILL.md

Single-trajectory analysis skill

Overview

This skill describes how to reproduce and extend the single-trajectory analysis workflow in omicverse, combining graph-based trajectory inference, RNA velocity coupling, and downstream fate scoring notebooks.

Trajectory setup

  • PAGA (Partition-based graph abstraction)

- Build a neighborhood graph (pp.neighbors) on the preprocessed AnnData object. - Use tl.paga to compute cluster connectivity and tl.draw_graph or tl.umap with init_pos='paga' for embedding. - Interpret edge weights to prioritize branch resolution and seed paths.

  • Palantir

- Run Palantir on diffusion components, seeding with manually selected start cells (e.g., naïve T cells). - Extract pseudotime, branch probabilities, and differentiation potential for subsequent overlays.

  • VIA

- Execute via.VIA on the kNN graph to identify lineage progression with automatic root selection or user-defined roots. - Export terminal states and pseudotime for cross-validation against PAGA and Palantir results.

Velocity coupling (VIA + scVelo)

  • Use scv.pp.filter_and_normalize, scv.pp.moments, and scv.tl.velocity to generate velocity layers.
  • Provide VIA with adata.layers['velocity'] to refine lineage directionality (via.VIA(..., velocity_weight=...)).
  • Compare VIA pseudotime with scVelo latent time (scv.tl.latent_time) to validate directionality and root selection.

Advanced RNA Velocity Backends (ov.single.Velo)

OmicVerse provides a unified Velo class wrapping 4 velocity backends. Use this when you need more than basic scVelo:

Backend selection guide

BackendBest forGPU?Prerequisites
scveloStandard velocity analysisNospliced/unspliced layers
dynamoKinetics modeling, vector fieldsNospliced/unspliced layers
latentveloVAE-based, batch correction, complex dynamicsYes (torchdiffeq)celltype_key, batch_key optional
graphveloRefinement layer on top of any backendNobase velocity + connectivities

Unified Velo pipeline

import omicverse as ov

velo = ov.single.Velo(adata)

# 1. Filter (scvelo backend) or preprocess (dynamo backend)
velo.filter_genes(min_shared_counts=20)     # For scvelo
# velo.preprocess(recipe='monocle', n_neighbors=30, n_pcs=30)  # For dynamo

# 2. Compute moments
velo.moments(backend='scvelo', n_pcs=30, n_neighbors=30)
# backend: 'scvelo' or 'dynamo'

# 3. Fit kinetic parameters
velo.dynamics(backend='scvelo')

# 4. Calculate velocity
velo.cal_velocity(method='scvelo')
# method: 'scvelo', 'dynamo', 'latentvelo', 'graphvelo'

# 5. Build velocity graph and project to embedding
velo.velocity_graph(basis='umap')
velo.velocity_embedding(basis='umap')

latentvelo specifics (deep learning velocity)

latentvelo uses a VAE + neural ODE to learn latent dynamics. It handles batch effects and complex trajectories better than classical scVelo:

velo.cal_velocity(
    method='latentvelo',
    celltype_key='cell_type',    # Optional: AnnotVAE uses cell type info
    batch_key='batch',           # Optional: batch correction
    velocity_key='velocity_S',
    n_top_genes=2000,
    latentvelo_VAE_kwargs={},    # Pass custom VAE hyperparameters
)
# Requires: pip install torchdiffeq
# Uses GPU if available, falls back to CPU

graphvelo specifics (refinement layer)

GraphVelo refines velocity estimates from any base method by leveraging the cell graph structure. Run it after scvelo or dynamo:

# First: compute base velocity with scvelo or dynamo
velo.cal_velocity(method='scvelo')

# Then: refine with graphvelo
velo.graphvelo(
    xkey='Ms',                          # Spliced moments key
    vkey='velocity_S',                  # Base velocity key to refine
    basis_keys=['X_umap', 'X_pca'],    # Project to multiple embeddings
    gene_subset=None,                   # Optional: restrict to gene subset
)

Downstream fate scoring notebooks

  • CellFateGenie: For pseudotime-associated gene discovery, use search_skills('CellFateGenie fate genes') to load the dedicated CellFateGenie skill.
  • t_metacells.ipynb: Aggregate metacell trajectories for robustness checks and meta-state differential expression.
  • t_cytotrace.ipynb: Integrate CytoTRACE differentiation potential with velocity-informed lineages for maturation scoring.

Required preprocessing

  1. Quality control: remove low-quality cells/genes, apply doublet filtering.
  2. Normalization & log transformation (sc.pp.normalize_total, sc.pp.log1p).
  3. Highly variable gene selection tailored to immune datasets (sc.pp.highly_variable_genes).
  4. Batch correction if necessary (e.g., scvi-tools, bbknn).
  5. Compute PCA, neighbor graph, and embedding (UMAP/FA) used by all trajectory methods.
  6. For velocity: compute moments on the same neighbor graph before running VIA coupling.

Parameter tuning

  • Neighbor graph n_neighbors and n_pcs should be harmonized across PAGA, VIA, and Palantir to maintain consistency.
  • In VIA, adjust knn, too_big_factor, and root_user for datasets with uneven sampling.
  • Palantir requires careful start cell selection; use marker genes and velocity arrows to confirm.
  • For PAGA, tweak threshold to control edge sparsity; ensure connected components reflect biological branches.
  • Velocity estimation: compare mode='stochastic' vs mode='dynamical' in scVelo; recalibrate if terminal states disagree with VIA.

Visualization and export

  1. Overlay PAGA edges on UMAP (scv.pl.paga) and annotate branch labels.
  2. Plot Palantir pseudotime and branch probabilities on embeddings.
  3. Visualize VIA trajectories using via.plot_fates and via.plot_scatter.
  4. Export pseudotime tables and fate probabilities to CSV for downstream notebooks.
  5. Save high-resolution figures (PNG/SVG) and notebook artifacts for reproducibility.
  6. Update notebooks with consistent color schemes and metadata columns before sharing.

Defensive Validation Patterns

# Before PAGA: verify neighbor graph exists
assert 'neighbors' in adata.uns, "Neighbor graph required. Run sc.pp.neighbors(adata) first."

# Before VIA velocity coupling: verify velocity layers exist
if 'velocity' not in adata.layers:
    print("WARNING: velocity layer missing. Run scv.tl.velocity(adata) first for VIA coupling.")
assert 'spliced' in adata.layers and 'unspliced' in adata.layers, \
    "Missing spliced/unspliced layers. Check loom/H5AD import preserved velocity layers."

# Before Palantir: verify PCA/diffusion components
assert 'X_pca' in adata.obsm, "PCA required. Run ov.pp.pca(adata) first."

Troubleshooting tips

  • Missing velocity layers: re-run scv.pp.moments and scv.tl.velocity ensuring adata.layers['spliced']/['unspliced'] exist; verify loom/H5AD import preserved layers.
  • Disconnected PAGA graph: inspect neighbor graph or adjust n_neighbors; confirm batch correction didn’t fragment the manifold.
  • Palantir convergence issues: reduce diffusion components or reinitialize start cells; ensure no NaN values in data matrix.
  • VIA terminal states unstable: increase iterations (cluster_graph_pruning_iter), or provide manual terminal state hints based on marker expression.
  • Notebook kernel memory errors: downsample cells or precompute summaries (metacells) before rerunning.
  • latentvelo ImportError: torchdiffeq: Install with pip install torchdiffeq. Required for neural ODE backend.
  • graphvelo returns NaN velocities: Ensure base velocity (scvelo/dynamo) was computed first. graphvelo refines — it doesn't compute from scratch.
  • dynamo preprocess fails: dynamo expects spliced/unspliced layers. Verify with 'spliced' in adata.layers.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude

32.18%
按下载量换算79

Codex

31.71%
按下载量换算78

Cursor

16.9%
按下载量换算42

Gemini CLI

9.54%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/starlitnightly/omicverse --skill single-trajectory-analysis 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills