Access the ENCODE Project REST API to search for and retrieve biological data (biosamples, experiments, etc.). Use this skill when the user needs to query ENCODE data, search by keywords, or retrieve specific objects by accession ID.
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/encode-api/SKILL.mdThis skill allows you to interact with the ENCODE Project database via its REST API.
scripts/encode_client.py.requests (Install via pip install -r requirements.txt)See ## Usage above for related details.
cd "20260316/scientific-skills/Evidence Insight/encode-api"
python -m py_compile scripts/encode_client.py
python scripts/encode_client.py --helpExample run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/encode_client.py with the validated inputs.scripts/encode_client.py.You can use the provided Python script scripts/encode_client.py to perform searches or retrieve specific objects.
To search for data using keywords:
from scripts.encode_client import search_encode
results = search_encode(term="bone chip", limit=10)
print(results)To retrieve a specific object (e.g., a Biosample or Experiment) by its accession ID:
from scripts.encode_client import get_object
data = get_object(accession="ENCBS000AAA")
print(data)https://www.encodeproject.org/api_key and api_secret to the functions.encode_api_result.md unless the skill documentation defines a better convention.Run this minimal verification path before full execution when possible:
python scripts/encode_client.py --helpExpected output format:
Result file: encode_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.