OP

opentargets-database

Access drug target data and genetic evidence for therapeutic research via GraphQL.

Install

mkdir -p .claude/skills/opentargets-database && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/2182" && unzip -o skill.zip -d .claude/skills/opentargets-database && rm skill.zip

Installs to .claude/skills/opentargets-database

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Query Open Targets Platform for target-disease associations, drug target discovery, tractability/safety data, genetics/omics evidence, known drugs, for therapeutic target identification.
186 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Queries target annotations and druggability
  • Retrieves target-disease association evidence
  • Identifies known drugs and mechanisms of action
  • Maps clinical trial phases for indications
  • Filters evidence by data type and score

How it works

The skill uses a GraphQL API to fetch and aggregate biological and clinical data from the Open Targets Platform for therapeutic target identification.

Inputs & outputs

You give it
Target gene symbol or disease name
You get back
Evidence scores and clinical trial data

When to use opentargets-database

  • Identify potential therapeutic targets for a disease
  • Evaluate target safety and druggability
  • Research existing drug mechanisms

About this skill

Open Targets Database

Overview

The Open Targets Platform is a comprehensive resource for systematic identification and prioritization of potential therapeutic drug targets. It integrates publicly available datasets including human genetics, omics, literature, and chemical data to build and score target-disease associations.

Key capabilities:

  • Query target (gene) annotations including tractability, safety, expression
  • Search for disease-target associations with evidence scores
  • Retrieve evidence from multiple data types (genetics, pathways, literature, etc.)
  • Find known drugs for diseases and their mechanisms
  • Access drug information including clinical trial phases and adverse events
  • Evaluate target druggability and therapeutic potential

Data access: The platform provides a GraphQL API, web interface, data downloads, and Google BigQuery access. This skill focuses on the GraphQL API for programmatic access.

When to Use This Skill

This skill should be used when:

  • Target discovery: Finding potential therapeutic targets for a disease
  • Target assessment: Evaluating tractability, safety, and druggability of genes
  • Evidence gathering: Retrieving supporting evidence for target-disease associations
  • Drug repurposing: Identifying existing drugs that could be repurposed for new indications
  • Competitive intelligence: Understanding clinical precedence and drug development landscape
  • Target prioritization: Ranking targets based on genetic evidence and other data types
  • Mechanism research: Investigating biological pathways and gene functions
  • Biomarker discovery: Finding genes differentially expressed in disease
  • Safety assessment: Identifying potential toxicity concerns for drug targets

Core Workflow

1. Search for Entities

Start by finding the identifiers for targets, diseases, or drugs of interest.

For targets (genes):

from scripts.query_opentargets import search_entities

# Search by gene symbol or name
results = search_entities("BRCA1", entity_types=["target"])
# Returns: [{"id": "ENSG00000012048", "name": "BRCA1", ...}]

For diseases:

# Search by disease name
results = search_entities("alzheimer", entity_types=["disease"])
# Returns: [{"id": "EFO_0000249", "name": "Alzheimer disease", ...}]

For drugs:

# Search by drug name
results = search_entities("aspirin", entity_types=["drug"])
# Returns: [{"id": "CHEMBL25", "name": "ASPIRIN", ...}]

Identifiers used:

  • Targets: Ensembl gene IDs (e.g., ENSG00000157764)
  • Diseases: EFO (Experimental Factor Ontology) IDs (e.g., EFO_0000249)
  • Drugs: ChEMBL IDs (e.g., CHEMBL25)

2. Query Target Information

Retrieve comprehensive target annotations to assess druggability and biology.

from scripts.query_opentargets import get_target_info

target_info = get_target_info("ENSG00000157764", include_diseases=True)

# Access key fields:
# - approvedSymbol: HGNC gene symbol
# - approvedName: Full gene name
# - tractability: Druggability assessments across modalities
# - safetyLiabilities: Known safety concerns
# - geneticConstraint: Constraint scores from gnomAD
# - associatedDiseases: Top disease associations with scores

Key annotations to review:

  • Tractability: Small molecule, antibody, PROTAC druggability predictions
  • Safety: Known toxicity concerns from multiple databases
  • Genetic constraint: pLI and LOEUF scores indicating essentiality
  • Disease associations: Diseases linked to the target with evidence scores

Refer to references/target_annotations.md for detailed information about all target features.

3. Query Disease Information

Get disease details and associated targets/drugs.

from scripts.query_opentargets import get_disease_info

disease_info = get_disease_info("EFO_0000249", include_targets=True)

# Access fields:
# - name: Disease name
# - description: Disease description
# - therapeuticAreas: High-level disease categories
# - associatedTargets: Top targets with association scores

4. Retrieve Target-Disease Evidence

Get detailed evidence supporting a target-disease association.

from scripts.query_opentargets import get_target_disease_evidence

# Get all evidence
evidence = get_target_disease_evidence(
    ensembl_id="ENSG00000157764",
    efo_id="EFO_0000249"
)

# Filter by evidence type
genetic_evidence = get_target_disease_evidence(
    ensembl_id="ENSG00000157764",
    efo_id="EFO_0000249",
    data_types=["genetic_association"]
)

# Each evidence record contains:
# - datasourceId: Specific data source (e.g., "gwas_catalog", "chembl")
# - datatypeId: Evidence category (e.g., "genetic_association", "known_drug")
# - score: Evidence strength (0-1)
# - studyId: Original study identifier
# - literature: Associated publications

Major evidence types:

  1. genetic_association: GWAS, rare variants, ClinVar, gene burden
  2. somatic_mutation: Cancer Gene Census, IntOGen, cancer biomarkers
  3. known_drug: Clinical precedence from approved/clinical drugs
  4. affected_pathway: CRISPR screens, pathway analyses, gene signatures
  5. rna_expression: Differential expression from Expression Atlas
  6. animal_model: Mouse phenotypes from IMPC
  7. literature: Text-mining from Europe PMC

Refer to references/evidence_types.md for detailed descriptions of all evidence types and interpretation guidelines.

5. Find Known Drugs

Identify drugs used for a disease and their targets.

from scripts.query_opentargets import get_known_drugs_for_disease

drugs = get_known_drugs_for_disease("EFO_0000249")

# drugs contains:
# - uniqueDrugs: Total number of unique drugs
# - uniqueTargets: Total number of unique targets
# - rows: List of drug-target-indication records with:
#   - drug: {name, drugType, maximumClinicalTrialPhase}
#   - targets: Genes targeted by the drug
#   - phase: Clinical trial phase for this indication
#   - status: Trial status (active, completed, etc.)
#   - mechanismOfAction: How drug works

Clinical phases:

  • Phase 4: Approved drug
  • Phase 3: Late-stage clinical trials
  • Phase 2: Mid-stage trials
  • Phase 1: Early safety trials

6. Get Drug Information

Retrieve detailed drug information including mechanisms and indications.

from scripts.query_opentargets import get_drug_info

drug_info = get_drug_info("CHEMBL25")

# Access:
# - name, synonyms: Drug identifiers
# - drugType: Small molecule, antibody, etc.
# - maximumClinicalTrialPhase: Development stage
# - mechanismsOfAction: Target and action type
# - indications: Diseases with trial phases
# - withdrawnNotice: If withdrawn, reasons and countries

7. Get All Associations for a Target

Find all diseases associated with a target, optionally filtering by score.

from scripts.query_opentargets import get_target_associations

# Get associations with score >= 0.5
associations = get_target_associations(
    ensembl_id="ENSG00000157764",
    min_score=0.5
)

# Each association contains:
# - disease: {id, name}
# - score: Overall association score (0-1)
# - datatypeScores: Breakdown by evidence type

Association scores:

  • Range: 0-1 (higher = stronger evidence)
  • Aggregate evidence across all data types using harmonic sum
  • NOT confidence scores but relative ranking metrics
  • Under-studied diseases may have lower scores despite good evidence

GraphQL API Details

For custom queries beyond the provided helper functions, use the GraphQL API directly or modify scripts/query_opentargets.py.

Key information:

  • Endpoint: https://api.platform.opentargets.org/api/v4/graphql
  • Interactive browser: https://api.platform.opentargets.org/api/v4/graphql/browser
  • No authentication required
  • Request only needed fields to minimize response size
  • Use pagination for large result sets: page: {size: N, index: M}

Refer to references/api_reference.md for:

  • Complete endpoint documentation
  • Example queries for all entity types
  • Error handling patterns
  • Best practices for API usage

Best Practices

Target Prioritization Strategy

When prioritizing drug targets:

  1. Start with genetic evidence: Human genetics (GWAS, rare variants) provides strongest disease relevance
  2. Check tractability: Prefer targets with clinical or discovery precedence
  3. Assess safety: Review safety liabilities, expression patterns, and genetic constraint
  4. Evaluate clinical precedence: Known drugs indicate druggability and therapeutic window
  5. Consider multiple evidence types: Convergent evidence from different sources increases confidence
  6. Validate mechanistically: Pathway evidence and biological plausibility
  7. Review literature manually: For critical decisions, examine primary publications

Evidence Interpretation

Strong evidence indicators:

  • Multiple independent evidence sources
  • High genetic association scores (especially GWAS with L2G > 0.5)
  • Clinical precedence from approved drugs
  • ClinVar pathogenic variants with disease match
  • Mouse models with relevant phenotypes

Caution flags:

  • Single evidence source only
  • Text-mining as sole evidence (requires manual validation)
  • Conflicting evidence across sources
  • High essentiality + ubiquitous expression (poor therapeutic window)
  • Multiple safety liabilities

Score interpretation:

  • Scores rank relative strength, not absolute confidence
  • Under-studied diseases have lower scores despite potentially valid targets
  • Weight expert-curated sources higher than computational predictions
  • Check evidence breakdown, not just overall score

Common Workflows

Workflow 1: Target Discovery for a Disease

  1. Search for disease → get EFO ID
  2. Query disease info with include_targets=True
  3. Review top targets sorted by association score
  4. For promising targets, get detailed target info
  5. Examine evidence types supporting e

Content truncated.

When not to use it

  • When performing systematic large-scale data analysis
  • When absolute clinical success prediction is required

Prerequisites

Target, disease, or drug identifiers

Limitations

  • Association scores are relative rankings, not absolute predictions
  • Under-studied diseases may have lower scores
  • Requires biological interpretation of evidence

How it compares

It provides programmatic access to integrated multi-omics and clinical data instead of manual literature searching.

Compared to similar skills

opentargets-database side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
opentargets-database (this skill)37moReviewIntermediate
literature-review5592moReviewAdvanced
openalex-database487moReviewIntermediate
market-research-reports387moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

software-architecture

davila7

Guide for quality focused software architecture. This skill should be used when users want to write code, design architecture, analyze code, in any case that relates to software development.

333868

planning-with-files

davila7

Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls.

233106

telegram-bot-builder

davila7

Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategies, and scaling bots to thousands of users. Use when: telegram bot, bot api, telegram automation, chat bot telegram, tg bot.

106130

scroll-experience

davila7

Expert in building immersive scroll-driven experiences - parallax storytelling, scroll animations, interactive narratives, and cinematic web experiences. Like NY Times interactives, Apple product pages, and award-winning web experiences. Makes websites feel like experiences, not just pages. Use when: scroll animation, parallax, scroll storytelling, interactive story, cinematic website.

101142

humanizer

davila7

Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases. Credits: Original skill by @blader - https://github.com/blader/humanizer

90175

game-development

davila7

Game development orchestrator. Routes to platform-specific skills based on project needs.

70195

You might also like

literature-review

K-Dense-AI

Conduct comprehensive, systematic literature reviews using multiple academic databases (PubMed, arXiv, bioRxiv, Semantic Scholar, etc.). This skill should be used when conducting systematic literature reviews, meta-analyses, research synthesis, or comprehensive literature searches across biomedical, scientific, and technical domains. Creates professionally formatted markdown documents and PDFs with verified citations in multiple citation styles (APA, Nature, Vancouver, etc.).

5591,298

openalex-database

davila7

Query and analyze scholarly literature using the OpenAlex database. This skill should be used when searching for academic papers, analyzing research trends, finding works by authors or institutions, tracking citations, discovering open access publications, or conducting bibliometric analysis across 240M+ scholarly works. Use for literature searches, research output analysis, citation analysis, and academic database queries.

48202

market-research-reports

davila7

Generate comprehensive market research reports (50+ pages) in the style of top consulting firms (McKinsey, BCG, Gartner). Features professional LaTeX formatting, extensive visual generation with scientific-schematics and generate-image, deep integration with research-lookup for data gathering, and multi-framework strategic analysis including Porter's Five Forces, PESTLE, SWOT, TAM/SAM/SOM, and BCG Matrix.

38162

scientific-brainstorming

davila7

Research ideation partner. Generate hypotheses, explore interdisciplinary connections, challenge assumptions, develop methodologies, identify research gaps, for creative scientific problem-solving.

37155

exa-search

benjaminjackson

Search the web for content matching a query with AI-powered semantic search. Use for finding relevant web pages, research papers, news articles, code repositories, or any web content by meaning rather than just keywords.

9106

scientific-critical-thinking

davila7

Evaluate research rigor. Assess methodology, experimental design, statistical validity, biases, confounding, evidence quality (GRADE, Cochrane ROB), for critical analysis of scientific claims.

1888

Search skills

Search the agent skills registry