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
development
Use when the user wants to spin up / create / launch / provision a DigitalOcean droplet (or "a remote dev box on DO") and connect to it from Codex as a remote SSH workspace.
data-ai
Search through Microsoft Teams chats or channels, triage unread or recent activity, draft follow-ups, and manage Planner tasks through connected Teams data.
tools
Motion / animation context for the `use_figma` MCP tool — animating Figma nodes via manual keyframes, animation styles, easing, and timeline duration. Load alongside figma-use whenever a task involves adding, editing, or inspecting animation on a node.
development
SwiftUI ↔ Figma translation. Use whenever the user mentions Swift, SwiftUI, iOS, iPhone, or iPad — in EITHER direction — translating a Figma design into SwiftUI (design → code), or pushing SwiftUI views / screens / tokens back into a Figma file (code → design). Triggers on phrases like 'implement this Figma design in SwiftUI', 'build this screen in Swift', 'push this SwiftUI view to Figma', 'mirror my Swift code in a Figma file', or whenever a Figma URL appears alongside `.swift` files / an `.xcodeproj`. Routes to a direction-specific reference doc; loads alongside `figma-use` for the code → design path.