用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill genotex-benchmark-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 | genotex-benchmark-guide |
| description | Benchmark for LLM agents on gene expression data analysis |
| metadata | {"openclaw":{"emoji":"🧫","category":"domains","subcategory":"biomedical","keywords":["GenoTEX","gene expression","benchmark","LLM agent","bioinformatics","GEO"],"source":"https://github.com/Liu-Hy/GenoTEX"}} |
GenoTEX is a benchmark for evaluating LLM-based agents on gene expression data analysis tasks. It provides curated datasets from GEO (Gene Expression Omnibus) with ground-truth analysis pipelines, testing agents on data preprocessing, differential expression, enrichment analysis, and biological interpretation. Published at MLCB 2025 as an oral presentation.
GenoTEX Benchmark
├── Data Collection
│ └── Curated GEO datasets with ground truth
├── Task Categories
│ ├── Data preprocessing (QC, normalization)
│ ├── Differential expression analysis
│ ├── Gene set enrichment analysis
│ ├── Clustering and classification
│ └── Biological interpretation
├── Evaluation
│ ├── Code correctness (executes without error)
│ ├── Statistical validity (appropriate tests)
│ ├── Result accuracy (vs ground truth)
│ └── Interpretation quality (biological insight)
└── Baselines
├── GPT-4 agent
├── Claude agent
└── Domain-specific fine-tuned models
from genotex import GenoTEXBenchmark
bench = GenoTEXBenchmark()
# List available tasks
tasks = bench.list_tasks()
for task in tasks[:5]:
print(f"Task: {task.id}")
print(f" Dataset: {task.geo_accession}")
print(f" Category: {task.category}")
print(f" Difficulty: {task.difficulty}")
# Get a specific task
task = bench.get_task("GSE12345_DEG")
print(f"Description: {task.description}")
print(f"Input files: {task.input_files}")
print(f"Expected output: {task.expected_output_type}")
# Evaluate an agent on GenoTEX
from genotex import evaluate_agent
results = evaluate_agent(
agent_fn=my_agent_function,
tasks="all", # or specific task IDs
timeout_per_task=300, # seconds
)
print(f"Tasks completed: {results.completed}/{results.total}")
print(f"Code correctness: {results.code_correct_rate:.1%}")
print(f"Statistical validity: {results.stats_valid_rate:.1%}")
print(f"Result accuracy: {results.accuracy:.3f}")
# Example: Differential Expression Analysis
task = {
"id": "GSE12345_DEG",
"description": "Identify differentially expressed genes "
"between treatment and control groups in "
"this RNA-seq dataset.",
"input": "GSE12345_counts.csv", # Raw count matrix
"metadata": "GSE12345_metadata.csv", # Sample info
"expected": {
"method": "DESeq2 or limma-voom",
"output": "DEG table with log2FC, p-value, adj.p",
"ground_truth": "GSE12345_deg_truth.csv",
},
}
# Example: Gene Set Enrichment
task = {
"id": "GSE12345_GSEA",
"description": "Perform gene set enrichment analysis on "
"the DEGs and identify enriched pathways.",
"input": "GSE12345_deg_results.csv",
"expected": {
"method": "fgsea, clusterProfiler, or enrichR",
"output": "Enriched pathways with NES and FDR",
},
}