Source: https://github.com/aipoch/medical-research-skills
HGNC API Skill
Access the HGNC database to retrieve standardized gene nomenclature and associated resources.
When to Use
- Use this skill when you need access the hgnc (hugo gene nomenclature committee) database to search for and retrieve gene information including symbols, names, ids, and other metadata in a reproducible workflow.
- Use this skill when a evidence insight task needs a packaged method instead of ad-hoc freeform output.
- Use this skill when the user expects a concrete deliverable, validation step, or file-based result.
- Use this skill when
scripts/hgnc.py is the most direct path to complete the request.
- Use this skill when you need the
hgnc-api package behavior rather than a generic answer.
Key Features
- Scope-focused workflow aligned to: Access the HGNC (HUGO Gene Nomenclature Committee) database to search for and retrieve gene information including symbols, names, IDs, and other metadata.
- Packaged executable path(s):
scripts/hgnc.py.
- Structured execution path designed to keep outputs consistent and reviewable.
Dependencies
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.
Example Usage
cd "20260316/scientific-skills/Evidence Insight/hgnc-api"
python -m py_compile scripts/hgnc.py
python scripts/hgnc.py --help
Example run plan:
- Confirm the user input, output path, and any required config values.
- Edit the in-file
CONFIG block or documented parameters if the script uses fixed settings.
- Run
python scripts/hgnc.py with the validated inputs.
- Review the generated output and return the final artifact with any assumptions called out.
Implementation Details
- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
- Primary implementation surface:
scripts/hgnc.py.
- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
Tools
fetch
Retrieve detailed gene records from HGNC.
- term (string): The identifier to look up (e.g., "BRAF", "HGNC:1097").
- field (string, optional): The field to query against. Defaults to "symbol".
Command:
python scripts/hgnc.py fetch "{term}" --field "{field}"
search
Search for genes using keywords or identifiers. Returns hgnc_id, symbol, and score.
- term (string): The search query.
- field (string, optional): Specific field to search in.
Command:
python scripts/hgnc.py search "{term}" --field "{field}"
get_info
Get service status and metadata.
Command:
python scripts/hgnc.py info
1---2name: hgnc-api3description: Access the HGNC (HUGO Gene Nomenclature Committee) database to search for and retrieve gene information including symbols, names, IDs, and other metadata.4license: MIT5---6> **Source**: [https://github.com/aipoch/medical-research-skills](https://github.com/aipoch/medical-research-skills)
7
8# HGNC API Skill
9
10Access the HGNC database to retrieve standardized gene nomenclature and associated resources.
11
12## When to Use
13
14- Use this skill when you need access the hgnc (hugo gene nomenclature committee) database to search for and retrieve gene information including symbols, names, ids, and other metadata in a reproducible workflow.
15- Use this skill when a evidence insight task needs a packaged method instead of ad-hoc freeform output.
16- Use this skill when the user expects a concrete deliverable, validation step, or file-based result.
17- Use this skill when `scripts/hgnc.py` is the most direct path to complete the request.
18- Use this skill when you need the `hgnc-api` package behavior rather than a generic answer.
19
20## Key Features
21
22- Scope-focused workflow aligned to: Access the HGNC (HUGO Gene Nomenclature Committee) database to search for and retrieve gene information including symbols, names, IDs, and other metadata.
23- Packaged executable path(s): `scripts/hgnc.py`.
24- Structured execution path designed to keep outputs consistent and reviewable.
25
26## Dependencies
27
28- `Python`: `3.10+`. Repository baseline for current packaged skills.
29- `Third-party packages`: `not explicitly version-pinned in this skill package`. Add pinned versions if this skill needs stricter environment control.
30
31## Example Usage
32
33```bash
34cd "20260316/scientific-skills/Evidence Insight/hgnc-api"
35python -m py_compile scripts/hgnc.py
36python scripts/hgnc.py --help
37```
38
39Example run plan:
401. Confirm the user input, output path, and any required config values.
412. Edit the in-file `CONFIG` block or documented parameters if the script uses fixed settings.
423. Run `python scripts/hgnc.py` with the validated inputs.
434. Review the generated output and return the final artifact with any assumptions called out.
44
45## Implementation Details
46
47- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
48- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
49- Primary implementation surface: `scripts/hgnc.py`.
50- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
51- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
52
53## Tools
54
55### fetch
56Retrieve detailed gene records from HGNC.
57
58- **term** (string): The identifier to look up (e.g., "BRAF", "HGNC:1097").
59- **field** (string, optional): The field to query against. Defaults to "symbol".
60
61**Command:**
62```bash
63python scripts/hgnc.py fetch "{term}" --field "{field}"
64```
65
66### search
67Search for genes using keywords or identifiers. Returns hgnc_id, symbol, and score.
68
69- **term** (string): The search query.
70- **field** (string, optional): Specific field to search in.
71
72**Command:**
73```bash
74python scripts/hgnc.py search "{term}" --field "{field}"
75```
76
77### get_info
78Get service status and metadata.
79
80**Command:**
81```bash
82python scripts/hgnc.py info
83```