skills/43-wentorai-research-plugins/skills/domains/biomedical/biothings-api/SKILL.md
Query gene, variant, and drug annotations via BioThings APIs
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research biothings-apiInstall 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.
BioThings is a family of high-performance biomedical annotation APIs developed at the Scripps Research Institute. The suite provides unified, up-to-date access to gene, variant, and chemical/drug annotations aggregated from dozens of authoritative sources. Three primary services cover the core entities in translational research:
All three share identical query syntax, require no authentication, and return JSON. Free for academic and commercial use.
No authentication or API keys are required. All endpoints are open-access.
# No API key needed — just query directly
curl "https://mygene.info/v3/query?q=BRCA1&size=1"
GET https://mygene.info/v3/query?q={query}&size={n}
Query by gene symbol, name, Entrez ID, Ensembl ID, or keyword. Supports boolean operators (AND, OR, NOT) and field-specific queries like symbol:CDK2.
curl -s "https://mygene.info/v3/query?q=BRCA1&size=1"
Response:
{
"took": 178,
"total": 13223,
"hits": [
{
"_id": "672",
"_score": 145.6796,
"entrezgene": "672",
"name": "BRCA1 DNA repair associated",
"symbol": "BRCA1",
"taxid": 9606
}
]
}
GET https://mygene.info/v3/gene/{entrez_id}
Returns comprehensive annotations for a single gene. Use the fields parameter to select specific data sources.
# Full annotation (large response)
curl -s "https://mygene.info/v3/gene/1017"
# Selective fields
curl -s "https://mygene.info/v3/gene/1017?fields=symbol,name,summary,genomic_pos,go"
Response (key fields for CDK2, Entrez ID 1017):
{
"_id": "1017",
"symbol": "CDK2",
"name": "cyclin dependent kinase 2",
"HGNC": "1771",
"MIM": "116953",
"AllianceGenome": "1771",
"taxid": 9606,
"type_of_gene": "protein-coding"
}
The full response includes accessions, Gene Ontology terms, pathway memberships (KEGG, Reactome, WikiPathways), protein domains (InterPro, Pfam), homology data, and genomic coordinates.
GET https://myvariant.info/v1/query?q={query}&size={n}
Query by rsID, HGVS notation (e.g., chr7:g.140453136A>T), gene symbol, or ClinVar significance. Returns aggregated annotations from 15+ sources.
curl -s "https://myvariant.info/v1/query?q=rs58991260&size=1"
Response (truncated):
{
"took": 20,
"total": 1,
"hits": [
{
"_id": "chr1:g.218631822G>A",
"_score": 21.382616,
"dbsnp": {
"rsid": "rs58991260",
"vartype": "snv",
"ref": "G",
"alt": "A",
"chrom": "1"
},
"cadd": {
"phred": 1.679,
"consequence": "INTERGENIC",
"chrom": 1,
"pos": 218631822
},
"gnomad_genome": {
"af": { "af": 0.0150338, "af_afr": 0.0528007, "af_eas": 0.0, "af_nfe": 0.00032417 },
"alt": "A",
"ref": "G"
}
}
]
}
GET https://myvariant.info/v1/variant/{hgvs_id}
curl -s "https://myvariant.info/v1/variant/chr1:g.218631822G>A?fields=dbsnp,cadd,clinvar"
GET https://mychem.info/v1/query?q={query}&size={n}
Query by drug name, NDC code, InChIKey, or active ingredient. Aggregates data from FDA NDC, DrugBank, ChEMBL, PubChem, SIDER, and more.
curl -s "https://mychem.info/v1/query?q=aspirin&size=1"
Response (truncated):
{
"took": 82,
"total": 248,
"hits": [
{
"_id": "0615-8613",
"_score": 13.657401,
"ndc": {
"substancename": "ASPIRIN",
"nonproprietaryname": "Aspirin",
"proprietaryname": "Adult Low Dose Aspirin",
"active_numerator_strength": "81",
"active_ingred_unit": "mg/1",
"dosageformname": "TABLET, DELAYED RELEASE",
"routename": "ORAL",
"producttypename": "HUMAN OTC DRUG",
"pharm_classes": [
"Cyclooxygenase Inhibitors [MoA]",
"Decreased Platelet Aggregation [PE]",
"Anti-Inflammatory Agents, Non-Steroidal [CS]",
"Nonsteroidal Anti-inflammatory Drug [EPC]",
"Platelet Aggregation Inhibitor [EPC]"
]
}
}
]
}
GET https://mychem.info/v1/chem/{id}
curl -s "https://mychem.info/v1/chem/CHEMBL25?fields=drugbank,chembl,pubchem"
All BioThings APIs share the same query engine. Key features:
| Feature | Syntax | Example |
|---------|--------|---------|
| Field-specific | field:value | symbol:TP53 |
| Boolean | AND, OR, NOT | BRCA1 AND cancer |
| Wildcard | * | CDK* |
| Range | [min TO max] | exac.af:[0.01 TO 0.05] |
| Pagination | size, from | size=20&from=40 |
| Field selection | fields | fields=symbol,name,go |
| Sorting | sort | sort=_score:desc |
| Batch POST | POST with ids | Up to 1000 IDs per request |
import requests, time
MYGENE = "https://mygene.info/v3"
MYVARIANT = "https://myvariant.info/v1"
MYCHEM = "https://mychem.info/v1"
def search_gene(symbol):
resp = requests.get(f"{MYGENE}/query",
params={"q": f"symbol:{symbol}", "size": 1, "species": "human"})
resp.raise_for_status()
hits = resp.json().get("hits", [])
return hits[0] if hits else {}
def search_variants(gene_symbol, size=5):
resp = requests.get(f"{MYVARIANT}/query",
params={"q": f"clinvar.gene.symbol:{gene_symbol}",
"fields": "dbsnp.rsid,clinvar.rcv.clinical_significance,cadd.phred",
"size": size})
resp.raise_for_status()
return resp.json().get("hits", [])
def search_drug(name):
resp = requests.get(f"{MYCHEM}/query",
params={"q": name, "size": 1,
"fields": "ndc.substancename,ndc.pharm_classes"})
resp.raise_for_status()
hits = resp.json().get("hits", [])
return hits[0] if hits else {}
# Translational research pipeline: gene -> variants -> drug
gene = search_gene("BRCA1")
print(f"Gene: {gene.get('symbol')} (Entrez: {gene.get('entrezgene')})")
time.sleep(0.35)
variants = search_variants("BRCA1", size=3)
for v in variants:
rsid = v.get("dbsnp", {}).get("rsid", v.get("_id"))
print(f" Variant: {rsid} | CADD: {v.get('cadd', {}).get('phred', 'N/A')}")
time.sleep(0.35)
drug = search_drug("olaparib")
print(f" Drug: {drug.get('ndc', {}).get('substancename', 'N/A')}")
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.