用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill genomas-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
正在显示 SKILL.md
基于 SOC 职业分类
| name | genomas-guide |
| description | Automate gene expression analysis with the GenoMAS multi-agent system |
| metadata | {"openclaw":{"emoji":"🧬","category":"domains","subcategory":"biomedical","keywords":["GenoMAS","gene expression","multi-agent","bioinformatics","RNA-seq","genomics automation"],"source":"wentor-research-plugins"}} |
GenoMAS (Genomics Multi-Agent System) is a minimalist multi-agent framework for automating scientific analysis workflows, particularly gene expression analysis. It orchestrates specialized agents for data retrieval, preprocessing, differential expression analysis, pathway enrichment, and visualization — turning a natural language research question into a complete bioinformatics pipeline.
pip install genomas
# Or from source
git clone https://github.com/futianfan/GenoMAS.git
cd GenoMAS && pip install -e .
from genomas import GenoMAS
geno = GenoMAS(llm_provider="anthropic")
# Describe analysis in natural language
result = geno.analyze(
"Compare gene expression between tumor and normal tissue "
"in the TCGA breast cancer dataset. Identify differentially "
"expressed genes and run pathway enrichment analysis."
)
# GenoMAS automatically:
# 1. Retrieves TCGA-BRCA data via GDC API
# 2. Normalizes and filters expression data
# 3. Runs DESeq2-style differential expression
# 4. Performs GO and KEGG pathway enrichment
# 5. Generates volcano plots and heatmaps
| Agent | Responsibility |
|---|---|
| Data Agent | Retrieves datasets from GEO, TCGA, ArrayExpress |
| Preprocessing Agent | Quality control, normalization, filtering |
| Analysis Agent | Differential expression, clustering, PCA |
| Enrichment Agent | GO, KEGG, MSigDB pathway analysis |
| Visualization Agent | Plots, heatmaps, volcano plots |
| Report Agent | Generates methods section and results summary |
from genomas import DataAgent, AnalysisAgent, EnrichmentAgent
# Step 1: Retrieve data
data_agent = DataAgent()
dataset = data_agent.fetch("GSE12345", platform="RNA-seq")
# Step 2: Differential expression
analysis = AnalysisAgent()
de_results = analysis.differential_expression(
dataset,
group_col="condition",
case="tumor",
control="normal",
method="deseq2",
)
# Step 3: Filter significant genes
sig_genes = de_results[
(de_results["padj"] < 0.05) &
(abs(de_results["log2FoldChange"]) > 1)
]
print(f"Found {len(sig_genes)} differentially expressed genes")
# Step 4: Pathway enrichment
enrichment = EnrichmentAgent()
pathways = enrichment.run(
gene_list=sig_genes["gene_symbol"].tolist(),
databases=["GO_BP", "KEGG", "Reactome"],
)
# Step 5: Visualize
from genomas.viz import volcano_plot, pathway_barplot
volcano_plot(de_results, output="volcano.png")
pathway_barplot(pathways, top_n=20, output="pathways.png")
| Analysis | Method |
|---|---|
| Differential expression | DESeq2, edgeR, limma-voom |
| Clustering | Hierarchical, k-means, UMAP |
| PCA | Principal component analysis |
| GO enrichment | Gene Ontology term enrichment |
| KEGG pathway | KEGG pathway mapping |
| GSEA | Gene Set Enrichment Analysis |
| Survival analysis | Kaplan-Meier, Cox regression |
| Source | Data type |
|---|---|
| GEO (NCBI) | Microarray, RNA-seq |
| TCGA | Cancer genomics |
| GTEx | Normal tissue expression |
| ArrayExpress | European expression data |