数据与复现单细胞与空间组学FreedomIntelligence/OpenClaw-Medical-Skills数据与复现
BI

bio-single-cell-splicing

维护者 FreedomIntelligence · 最近更新 2026年4月1日

Analyzes alternative splicing at single-cell resolution using BRIE2 for probabilistic PSI estimation or leafcutter2 for cluster-based analysis with NMD detection. Identifies cell-type-specific splicing patterns. Use when analyzing isoform usage in scRNA-seq or finding splicing differences between cell populations.

OpenClawNanoClaw分析处理复现实验bio-single-cell-splicing🧬 bioinformatics (gptomics bio-* suite)bioinformatics — single-cell & spatial omicsanalyzes

原始来源

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-single-cell-splicing

维护者
FreedomIntelligence
许可
MIT
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • 分析 alternative splicing at single-cell resolution。
  • adata = sc.read_h5ad('scrnaseq.h5ad')。

原始文档

SKILL.md 摘录

BRIE2 Analysis

Goal: Estimate per-cell PSI values for splicing events with uncertainty quantification.

Approach: Prepare splicing events from annotation, count reads per cell barcode, then fit a Bayesian variational inference model for probabilistic PSI estimation.

"Analyze splicing in single-cell data" -> Estimate per-cell inclusion levels for splicing events with uncertainty.

  • Python: BRIE2 (probabilistic PSI, handles sparsity)
  • Python/R: leafcutter2 (intron clustering, NMD detection)
import brie
import scanpy as sc
import anndata as ad

## BRIE2 uses pre-defined splicing events

brie.preprocessing.get_events(
    gtf_file='annotation.gtf',
    out_file='splicing_events.gff3'
)

## Requires cell barcodes and UMIs

brie.preprocessing.count(
    bam_file='possorted_genome_bam.bam',
    gff_file='splicing_events.gff3',
    out_dir='brie_counts/',
    cell_file='barcodes.tsv'  # Filtered cell barcodes
)

适用场景

  • 适合在analyzing isoform usage in scRNA-seq 或 finding splicing differences between cell populations时使用。

不适用场景

  • Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。

工具选择

leafcutter2

NMD detection, novel junctions

Intron clustering

上游相关技能

  • single-cell/preprocessing - QC before splicing analysis
  • single-cell/clustering - Cell type annotation
  • splicing-quantification - Bulk RNA-seq comparison

相关技能

相关技能

返回目录
AN
数据与复现单细胞与空间组学

AnnData

AnnData is a Python package for handling annotated data matrices, storing experimental measurements (X) alongside observ…

Claude CodeOpenClaw分析处理
K-Dense-AI/claude-scientific-skills查看
AR
数据与复现单细胞与空间组学

Arboreto

Arboreto is a computational library for inferring gene regulatory networks (GRNs) from gene expression data using parall…

Claude CodeOpenClaw分析处理
K-Dense-AI/claude-scientific-skills查看
BI
数据与复现单细胞与空间组学

bio-imaging-mass-cytometry-cell-segmentation

Cell segmentation from multiplexed tissue images. Covers deep learning (Cellpose, Mesmer) and classical approaches for n…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现单细胞与空间组学

bio-read-qc-umi-processing

Extract, process, and deduplicate reads using Unique Molecular Identifiers (UMIs) with umi_tools. Use when library prep…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看