Medical-research-skills hgnc-api
Access the HGNC (HUGO Gene Nomenclature Committee) database to search for and retrieve gene information including symbols, names, IDs, and other metadata.
install
source · Clone the upstream repo
git clone https://github.com/aipoch/medical-research-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aipoch/medical-research-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/scientific-skills/Evidence Insight/hgnc-api" ~/.claude/skills/aipoch-medical-research-skills-hgnc-api && rm -rf "$T"
manifest:
scientific-skills/Evidence Insight/hgnc-api/SKILL.mdsource content
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
is the most direct path to complete the request.scripts/hgnc.py - Use this skill when you need the
package behavior rather than a generic answer.hgnc-api
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
. Repository baseline for current packaged skills.3.10+
:Third-party packages
. Add pinned versions if this skill needs stricter environment control.not explicitly version-pinned in this skill package
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
block or documented parameters if the script uses fixed settings.CONFIG - Run
with the validated inputs.python scripts/hgnc.py - 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