skills/43-wentorai-research-plugins/skills/domains/biomedical/enrichr-api/SKILL.md
Perform gene set enrichment analysis using the Enrichr API
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research enrichr-apiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Enrichr is the most widely used gene set enrichment analysis tool, developed by the Ma'ayan Lab at the Icahn School of Medicine at Mount Sinai. It tests whether a user-supplied gene list is statistically over-represented in curated gene set libraries spanning pathways, ontologies, transcription factor targets, disease associations, and cell types. The API provides access to 225 background libraries covering over 500,000 annotated gene sets. Free, no authentication required.
Enrichr uses a submit-then-query pattern:
/addList -- returns a userListId token/enrich using that token and a chosen libraryThe userListId persists on the server, so you can run multiple library queries against the same submission without re-uploading.
https://maayanlab.cloud/Enrichr
curl -X POST "https://maayanlab.cloud/Enrichr/addList" \
-F "list=BRCA1
BRCA2
TP53
EGFR
MYC
PTEN
AKT1
KRAS
PIK3CA
RAF1" \
-F "description=cancer_genes"
Response:
{
"shortId": "8619200cc78f1513ff1029a04af90ad7",
"userListId": 124544426
}
Genes are newline-separated. The request must use multipart/form-data (the -F flag), not application/x-www-form-urlencoded.
curl "https://maayanlab.cloud/Enrichr/enrich?userListId=124544426&backgroundType=KEGG_2021_Human"
Response (first 3 of 143 results):
{
"KEGG_2021_Human": [
[1, "Breast cancer", 3.37e-22, 198530.0, 9815800.25,
["PIK3CA","MYC","PTEN","AKT1","KRAS","BRCA1","BRCA2","RAF1","TP53","EGFR"],
4.82e-20, 0, 0],
[2, "Endometrial cancer", 1.35e-19, 1595.2, 69306.12,
["PIK3CA","MYC","PTEN","AKT1","KRAS","RAF1","TP53","EGFR"],
9.68e-18, 0, 0],
[3, "Central carbon metabolism in cancer", 6.66e-19, 1285.68, 53809.88,
["PIK3CA","MYC","PTEN","AKT1","KRAS","RAF1","TP53","EGFR"],
3.17e-17, 0, 0]
]
}
Each result array contains: [rank, term_name, p_value, z_score, combined_score, overlapping_genes, adjusted_p_value, old_p_value, old_adjusted_p_value].
curl "https://maayanlab.cloud/Enrichr/view?userListId=124544426"
{
"genes": ["PIK3CA","MYC","AKT1","PTEN","BRCA1","KRAS","BRCA2","EGFR","TP53","RAF1"],
"description": "cancer_genes"
}
curl "https://maayanlab.cloud/Enrichr/export?userListId=124544426&backgroundType=KEGG_2021_Human&filename=results" \
-o enrichr_results.txt
curl "https://maayanlab.cloud/Enrichr/datasetStatistics"
Returns metadata for all 225 libraries, each entry containing libraryName, numTerms, geneCoverage, and genesPerTerm.
| Library | Terms | Genes | |---------|-------|-------| | KEGG_2026 | 352 | 8,110 | | KEGG_2021_Human | 320 | 8,078 | | WikiPathways_2024_Human | 829 | 8,281 | | Reactome_Pathways_2024 | 2,105 | 11,671 | | BioCarta_2016 | 237 | 1,348 |
| Library | Terms | Genes | |---------|-------|-------| | GO_Biological_Process_2025 | 5,343 | 14,674 | | GO_Molecular_Function_2025 | 1,174 | 11,484 | | GO_Cellular_Component_2025 | 468 | 11,501 |
| Library | Terms | Genes | |---------|-------|-------| | DisGeNET | 9,828 | 17,464 | | GWAS_Catalog_2025 | 2,369 | 15,030 | | ClinVar_2025 | 609 | 3,481 | | OMIM_Disease | 90 | 1,759 | | Human_Phenotype_Ontology | 1,779 | 3,096 |
| Library | Terms | Genes | |---------|-------|-------| | ChEA_2022 | 757 | 18,365 | | ENCODE_TF_ChIP-seq_2015 | 816 | 26,382 | | JASPAR_PWM_Human_2025 | 675 | 18,518 |
| Library | Terms | Genes | |---------|-------|-------| | CellMarker_2024 | 1,692 | 12,642 | | ARCHS4_Tissues | 108 | 21,809 | | Human_Gene_Atlas | 84 | 13,373 |
| Library | Terms | Genes | |---------|-------|-------| | MSigDB_Hallmark_2020 | 50 | 4,383 | | MSigDB_Oncogenic_Signatures | 189 | 11,250 | | DGIdb_Drug_Targets_2024 | 659 | 2,513 |
userListId persists server-side; avoid re-submitting the same list repeatedlyimport requests
ENRICHR_URL = "https://maayanlab.cloud/Enrichr"
def submit_gene_list(genes: list[str], description: str = "") -> int:
"""Submit a gene list to Enrichr, return userListId."""
payload = {
"list": (None, "\n".join(genes)),
"description": (None, description),
}
resp = requests.post(f"{ENRICHR_URL}/addList", files=payload)
resp.raise_for_status()
return resp.json()["userListId"]
def get_enrichment(user_list_id: int, library: str) -> list[dict]:
"""Retrieve enrichment results for a given library."""
resp = requests.get(
f"{ENRICHR_URL}/enrich",
params={"userListId": user_list_id, "backgroundType": library},
)
resp.raise_for_status()
data = resp.json()
results = []
for entry in data.get(library, []):
results.append({
"rank": entry[0],
"term": entry[1],
"p_value": entry[2],
"z_score": entry[3],
"combined_score": entry[4],
"genes": entry[5],
"adj_p_value": entry[6],
})
return results
def get_libraries() -> list[dict]:
"""List all available Enrichr libraries."""
resp = requests.get(f"{ENRICHR_URL}/datasetStatistics")
resp.raise_for_status()
return resp.json()["statistics"]
# Example: enrichment analysis of cancer-related genes
genes = ["BRCA1", "BRCA2", "TP53", "EGFR", "MYC",
"PTEN", "AKT1", "KRAS", "PIK3CA", "RAF1"]
list_id = submit_gene_list(genes, "cancer_genes")
print(f"Submitted gene list, ID: {list_id}")
# Query KEGG pathways
kegg = get_enrichment(list_id, "KEGG_2021_Human")
print(f"\nTop 5 KEGG pathways ({len(kegg)} total):")
for r in kegg[:5]:
print(f" {r['rank']}. {r['term']}")
print(f" p={r['p_value']:.2e}, adj_p={r['adj_p_value']:.2e}, "
f"genes={','.join(r['genes'][:5])}...")
# Query GO Biological Process
go_bp = get_enrichment(list_id, "GO_Biological_Process_2023")
print(f"\nTop 5 GO Biological Processes ({len(go_bp)} total):")
for r in go_bp[:5]:
print(f" {r['rank']}. {r['term']}")
print(f" p={r['p_value']:.2e}, genes={','.join(r['genes'])}")
development
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.