plugins/life-science-research/skills/gtex-eqtl-skill/SKILL.md
Fetch GTEx single-tissue eQTL associations from one variant input by accepting rsID, GRCh37, or GRCh38 input and resolving to the required GRCh38 query for the GTEx v2 API. Use when a user wants eQTL associations returned as JSON.
npx skillsauth add openai/plugins gtex-eqtl-skillInstall 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.
requests for all network calls.rsid, grch37, grch38, or variant, and resolve to a GRCh38 chrom-pos-ref-alt query.variantId format: chr{chrom}_{pos}_{ref}_{alt}_b38.Accept JSON on stdin as either:
"10-112998590-C-T" (treated as GRCh38){
"grch38": "10-112998590-C-T",
"max_results": 200
}
Other accepted object forms include:
{
"grch37": "10-114758349-C-T"
}
{
"rsid": "rs7903146",
"max_results": 50
}
Allowed variant separators include -, :, _, /, or whitespace, for example:
10-112998590-C-T10:112998590-C-T10:112998590:C:Tchr10 112998590 C Tmax_results is optional and truncates returned eQTL rows when provided.
Success shape:
{
"ok": true,
"source": "gtex-v2",
"input": {"type": "grch38", "value": "10-112998590-C-T"},
"query_variant": {
"chr": "10",
"pos": 112998590,
"ref": "C",
"alt": "T",
"canonical": "10:112998590-C-T",
"variant_id": "chr10_112998590_C_T_b38"
},
"eqtl_count": 2,
"eqtl_count_total": 2,
"truncated": false,
"eqtls": [],
"paging_info": {},
"warnings": []
}
Failure shape:
{
"ok": false,
"error": {"code": "...", "message": "..."},
"warnings": []
}
Use:
scripts/gtex_eqtl.pyThe script reads JSON from stdin and prints JSON to stdout.
Example:
echo '{"grch38":"10-112998590-C-T","max_results":5}' | python scripts/gtex_eqtl.py
tools
Top-level workflow skill for USD performance diagnosis and optimization. Use for slow loading, high memory, low FPS, or 'optimize my scene' requests; delegates auth/runtime setup to Phase 0 owners.
data-ai
Use when the user mentions MagicPath, designs, UI components, themes, canvas selections, or repo-to-canvas UI work; run magicpath-ai to search, inspect, install, or author components.
documentation
Use as the top-level router for Omniverse Realtime Viewer USD app requests and focused viewer reference documents.
tools
Turn Notion specs into implementation plans, tasks, and progress tracking; use when implementing PRDs/feature specs and creating Notion plans + tasks from them.