bio-blast-searches
bio-blast-searches:运行 BLAST searches against local 或 remote databases ,用于 sequence homology。
维护者 FreedomIntelligence · 最近更新 2026年4月1日
bio-pathway-kegg-pathways:KEGG pathway 、 module enrichment analysis ,使用 clusterProfiler enrichKEGG 、 enrichMKEGG。 支持 4000+ organisms ,通过 KEGG online database。 适合在identifying metabolic 、 signaling pathways over-represented in gene list时使用。
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-pathway-kegg-pathways
技能摘要
原始文档
Goal: Identify KEGG metabolic and signaling pathways over-represented in a gene list.
Approach: Test for enrichment using the hypergeometric test via clusterProfiler enrichKEGG against the KEGG online database.
"Find enriched KEGG pathways in my gene list" → Test whether KEGG pathway gene sets are over-represented among significant genes.
Goal: Extract significant Entrez gene IDs from DE results in the format required by enrichKEGG.
Approach: Filter by significance thresholds and convert gene symbols to Entrez IDs (KEGG requires NCBI Entrez).
library(org.Hs.eg.db)
de_results <- read.csv('de_results.csv')
sig_genes <- de_results$gene_id[de_results$padj < 0.05 & abs(de_results$log2FoldChange) > 1]
## KEGG ID Conversion
**Goal:** Convert between KEGG-specific identifiers and other gene ID formats.
**Approach:** Use bitr_kegg to map between kegg, ncbi-geneid, ncbi-proteinid, and uniprot ID types.
```r
相关技能
bio-blast-searches:运行 BLAST searches against local 或 remote databases ,用于 sequence homology。
bio-entrez-link:获取 linked records across NCBI Entrez databases。
bio-local-blast:Set up 、 run BLAST+ locally ,支持 custom databases。
bio-metagenomics-kraken:Taxonomic 分类 of metagenomic reads ,使用 Kraken2。 Fast k-mer based 分类 against RefSeq database。 适合在p…