跳到主要内容
知仓学习社ZHICANG

bio-pathway-wikipathways

WikiPathways enrichment using clusterProfiler and rWikiPathways. Use when analyzing gene lists against community-curated open-source pathways. Perfo…

不碰外部(只输出文字)无严重或高危命中FreedomIntelligence/OpenClaw-Medical-Skills

它会碰到什么

扫了多少2 个文本文件,10 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Version Compatibility

Reference examples tested with: ReactomePA 1.46+, clusterProfiler 4.10+, rWikiPathways 1.24+

Before using code patterns, verify installed versions match. If versions differ:

  • R: packageVersion('<pkg>') then ?function_name to verify parameters

If code throws ImportError, AttributeError, or TypeError, introspect the installed

package and adapt the example to match the actual API rather than retrying.

WikiPathways Enrichment

Core Pattern - Over-Representation Analysis

Goal: Identify WikiPathways that are over-represented in a gene list.

Approach: Test for enrichment using enrichWP against community-curated open-source pathway definitions.

"Run pathway enrichment against WikiPathways" → Test whether genes from community-curated WikiPathways are over-represented among significant genes.

library(clusterProfiler)
library(org.Hs.eg.db)

wp_result <- enrichWP(
    gene = entrez_ids,         # Character vector of Entrez IDs
    organism = 'Homo sapiens', # Full species name
    pvalueCutoff = 0.05,
    pAdjustMethod = 'BH'
)

head(as.data.frame(wp_result))

Prepare Gene List

Goal: Extract significant Entrez gene IDs from DE results for WikiPathways enrichment.

Approach: Filter by significance thresholds and convert gene symbols to Entrez IDs with bitr.

de_results <- read.csv('de_results.csv')
sig_genes <- de_results[de_results$padj < 0.05 & abs(de_results$log2FoldChange) > 1, 'gene_symbol']

gene_ids <- bitr(sig_genes, fromType = 'SYMBOL', toType = 'ENTREZID', OrgDb = org.Hs.eg.db)
entrez_ids <- gene_ids$ENTREZID

GSEA on WikiPathways

Goal: Detect coordinated expression changes in WikiPathways using a ranked gene list.

Approach: Sort genes by fold change and run gseWP for rank-based enrichment testing.

# Create ranked gene list
gene_list <- de_results$log2FoldChange
names(gene_list) <- de_results$entrez_id
gene_list <- sort(gene_list, decreasing = TRUE)

gsea_wp <- gseWP(
    geneList = gene_list,
    organism = 'Homo sapiens',
    pvalueCutoff = 0.05,
    pAdjustMethod = 'BH'
)

head(as.data.frame(gsea_wp))

With Background Universe

all_genes <- de_results$entrez_id

wp_result <- enrichWP(
    gene = entrez_ids,
    universe = all_genes,
    organism = 'Homo sapiens',
    pvalueCutoff = 0.05
)

Make Results Readable

# Convert Entrez IDs to gene symbols
wp_readable <- setReadable(wp_result, OrgDb = org.Hs.eg.db, keyType = 'ENTREZID')

Visualization

Goal: Create summary plots of WikiPathways enrichment results.

Approach: Use enrichplot functions (dotplot, barplot, cnetplot, emapplot) on the enrichment result object.

library(enrichplot)

# Dot plot
dotplot(wp_result, showCategory = 15)

# Bar plot
barplot(wp_result, showCategory = 15)

# Gene-concept network
cnetplot(wp_readable, categorySize = 'pvalue')

# Enrichment map
wp_result <- pairwise_termsim(wp_result)
emapplot(wp_result)

Using rWikiPathways Directly

Goal: Query the WikiPathways database directly for pathway metadata, gene lists, and GMT files.

Approach: Use rWikiPathways API functions to list organisms, retrieve pathway info, and download gene set definitions.

library(rWikiPathways)

# List available organisms
listOrganisms()

# Get all pathways for an organism
human_pathways <- listPathways('Homo sapiens')

# Get pathway info
pathway_info <- getPathwayInfo('WP554')  # ACE Inhibitor Pathway

# Get genes in a pathway
pathway_genes <- getXrefList('WP554', 'H')  # HGNC symbols
pathway_entrez <- getXrefList('WP554', 'L')  # Entrez IDs

# Download pathway as GMT for custom analysis
downloadPathwayArchive(organism = 'Homo sapiens', format = 'gmt')

Custom GMT-Based Analysis

Goal: Run enrichment using a downloaded WikiPathways GMT file for offline or custom analysis.

Approach: Download the GMT archive via rWikiPathways, read it with read.gmt, and run enricher.

# Download WikiPathways GMT
library(rWikiPathways)
downloadPathwayArchive(organism = 'Homo sapiens', format = 'gmt', destpath = '.')

# Read GMT and run enrichment
wp_gmt <- read.gmt('wikipathways-Homo_sapiens.gmt')

wp_custom <- enricher(
    gene = entrez_ids,
    TERM2GENE = wp_gmt,
    pvalueCutoff = 0.05
)

Different Organisms

# Mouse
wp_mouse <- enrichWP(gene = mouse_entrez, organism = 'Mus musculus')

# Rat
wp_rat <- enrichWP(gene = rat_entrez, organism = 'Rattus norvegicus')

# Zebrafish
wp_zfish <- enrichWP(gene = zfish_entrez, organism = 'Danio rerio')

# List all available organisms
library(rWikiPathways)
listOrganisms()

Compare Clusters

Goal: Compare WikiPathways enrichment across multiple gene lists (e.g., upregulated vs downregulated).

Approach: Use compareCluster with enrichWP to run enrichment per group and visualize with dotplot.

gene_clusters <- list(
    upregulated = up_genes,
    downregulated = down_genes
)

compare_wp <- compareCluster(
    geneClusters = gene_clusters,
    fun = 'enrichWP',
    organism = 'Homo sapiens',
    pvalueCutoff = 0.05
)

dotplot(compare_wp)

Export Results

results_df <- as.data.frame(wp_result)
write.csv(results_df, 'wikipathways_enrichment.csv', row.names = FALSE)

Key Parameters

| Parameter | Default | Description |

|-----------|---------|-------------|

| gene | required | Vector of Entrez IDs |

| organism | required | Full species name |

| pvalueCutoff | 0.05 | P-value threshold |

| pAdjustMethod | BH | Adjustment method |

| universe | NULL | Background genes |

| minGSSize | 10 | Min genes per pathway |

| maxGSSize | 500 | Max genes per pathway |

Common Organisms

| Common Name | Scientific Name |

|-------------|-----------------|

| Human | Homo sapiens |

| Mouse | Mus musculus |

| Rat | Rattus norvegicus |

| Zebrafish | Danio rerio |

| Fruit fly | Drosophila melanogaster |

| C. elegans | Caenorhabditis elegans |

| Arabidopsis | Arabidopsis thaliana |

| Yeast | Saccharomyces cerevisiae |

WikiPathways vs Other Databases

| Feature | WikiPathways | KEGG | Reactome |

|---------|--------------|------|----------|

| Curation | Community | Expert | Peer-reviewed |

| License | Open (CC0) | Commercial | Open |

| Species | 30+ | 4000+ | 7 |

| Focus | Disease, drug | Metabolic | Signaling |

| Updates | Continuous | Ongoing | Quarterly |

Related Skills

  • go-enrichment - Gene Ontology enrichment
  • kegg-pathways - KEGG pathway enrichment
  • reactome-pathways - Reactome pathway enrichment
  • gsea - Gene Set Enrichment Analysis
  • enrichment-visualization - Visualization functions

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

它属于哪个仓库

星标★ 3,010
本站分层T1
该仓技能数897
原文件路径skills/bio-pathway-wikipathways/SKILL.md

同一个仓库里的其他技能

看这个仓库的全部 897 个技能