Access ChEA3 and Harmonizome ChEA data for transcription factor enrichment analysis and metadata retrieval. Use when the user needs to perform ChEA3 enrichment analysis on a gene set, get metadata about the ChEA dataset, or retrieve information about a specific transcription factor (attribute).
60
70%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Evidence Insight/chea-api/SKILL.mdThis skill provides programmatic access to the ChEA3 enrichment analysis API and Harmonizome ChEA dataset metadata.
scripts/chea_client.py.Python: 3.10+. Repository baseline for current packaged skills.Third-party packages: not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.See ## Usage above for related details.
cd "20260316/scientific-skills/Evidence Insight/chea-api"
python -m py_compile scripts/chea_client.py
python scripts/chea_client.py --helpExample run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/chea_client.py with the validated inputs.scripts/chea_client.py.Perform enrichment analysis on a list of genes to identify associated transcription factors.
Script: scripts/chea_client.py
Command: enrich
import json
import sys
# Add scripts directory to path if needed, or run as subprocess
sys.path.append('scripts')
from chea_client import enrich
genes = ["FOXM1", "SMAD9", "MYC", "SMAD3", "STAT1", "STAT3"]
results = enrich(genes, query_name="my_analysis")
print(json.dumps(results, indent=2))Retrieve metadata for the ChEA dataset from Harmonizome.
Script: scripts/chea_client.py
Command: metadata
from chea_client import get_dataset_metadata
metadata = get_dataset_metadata()
print(json.dumps(metadata, indent=2))Get details about a specific transcription factor (Attribute) from Harmonizome.
Script: scripts/chea_client.py
Command: attribute
from chea_client import get_attribute_info
# Example: Get info for CREB1
info = get_attribute_info("CREB1")
print(json.dumps(info, indent=2))You can also run the script directly from the command line:
# Enrichment
python scripts/chea_client.py enrich FOXM1 SMAD9 MYC
# Metadata
python scripts/chea_client.py metadata
# Attribute Info
python scripts/chea_client.py attribute CREB1requests library (pip install requests)chea_api_result.md unless the skill documentation defines a better convention.Run this minimal verification path before full execution when possible:
python scripts/chea_client.py --helpExpected output format:
Result file: chea_api_result.md
Validation summary: PASS/FAIL with brief notes
Assumptions: explicit list if any63c61d3
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.