Back to list
GET-Foundation

gcell-celltype

by GET-Foundation

Python playground for cell-type-specific biology

12🍴 9📅 Jan 20, 2026

SKILL.md


name: gcell-celltype description: | Cell type regulatory analysis using gcell. Use this skill when users ask about:

  • Loading pre-inferred cell types (GET model outputs)
  • Gene-by-motif matrices showing TF influence on genes
  • Gene Jacobian analysis for regulatory importance
  • Motif subnet visualization
  • Cell type-specific gene expression patterns Triggers: cell type, regulatory analysis, gene expression, Jacobian, motif subnet, GET model, TF influence

Cell Type Regulatory Analysis

Loading Cell Types

from gcell.cell.celltype import GETDemoLoader

# Initialize loader
loader = GETDemoLoader()

# List available pre-inferred cell types
print(loader.available_celltypes)

# Load a specific cell type
ct = loader.load_celltype('Plasma Cell')
ct = loader.load_celltype('CD4+ T Cell')
ct = loader.load_celltype('Monocyte')

Gene-by-Motif Analysis

The gene-by-motif matrix shows how transcription factor motifs influence gene expression in a cell type.

# Get gene-by-motif matrix
gbm = ct.get_gene_by_motif()

# gbm is a DataFrame with genes as rows, motifs as columns
# Values represent regulatory influence scores
print(gbm.shape)
print(gbm.loc['MYC'])  # TF influences on MYC

Gene Jacobian Analysis

Jacobian analysis reveals which regulatory elements most influence a gene's expression.

# Get Jacobian summary for a specific gene
jacobian = ct.get_gene_jacobian_summary('MYC')
jacobian = ct.get_gene_jacobian_summary('TP53')

# Jacobian shows importance of each motif for the gene
print(jacobian.sort_values(ascending=False).head(20))

Motif Subnet Visualization

Visualize the regulatory network around a specific motif/TF.

# Interactive plotly visualization
ct.plotly_motif_subnet(motif_name='STAT3', top_genes=20)
ct.plotly_motif_subnet(motif_name='PU.1', top_genes=30)
ct.plotly_motif_subnet(motif_name='GATA1', top_genes=15)

# Parameters:
# - motif_name: Name of the motif/TF to center the network on
# - top_genes: Number of most influenced genes to show

Key Classes

ClassPurpose
GETDemoLoaderLoad pre-inferred cell types
GETCellTypeCell type analysis container
GETHydraCellTypeMulti-cell type analysis

Data Location

Pre-inferred cell type data is downloaded automatically to ~/.gcell_data/ on first use.

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon