Official Python client for the NIH LDlink REST API.
Project description
LDlinkPy
A Python interface to LDlink for reproducible linkage disequilibrium workflows
Project status: First public release series. Feedback and issue reports are welcome.
Introduction
LDlink is an interactive suite of web-based tools for investigating linkage disequilibrium (LD) across ancestral population groups. LDlink uses publicly available 1000 Genomes Project reference haplotypes to calculate population-specific LD, accepts variants as RefSNP (RS) numbers or genomic positions, and references dbSNP for RS identifiers and bi-allelic variant information. Depending on the module, LDlink also incorporates data from resources such as UCSC RefSeq, RegulomeDB, genetic maps, the GTEx Portal, the GWAS Catalog, and FORGEdb.
Internet access and a personal LDlink API token are required for API calls.
Install
LDlinkPy is available from PyPI. Using a virtual environment is recommended.
Requirements
- Python 3.10 or newer
macOS / Linux
python3 -m venv .venv
./.venv/bin/python -m pip install --upgrade pip
./.venv/bin/python -m pip install ldlinkpy
Windows PowerShell
py -m venv .venv
.\.venv\Scripts\python -m pip install --upgrade pip
.\.venv\Scripts\python -m pip install ldlinkpy
Quick Start
1. Get And Set Your LDlink Token
Request a personal access token at https://ldlink.nih.gov/apiaccess. Once registered, your token will be emailed to you.
LDlinkPy reads your token from the LDLINK_TOKEN environment variable by default. You can also pass token="your_token_here" directly to endpoint functions.
macOS / Linux:
export LDLINK_TOKEN="your_token_here"
Windows PowerShell:
$env:LDLINK_TOKEN="your_token_here"
2. Start Python
macOS / Linux:
./.venv/bin/python
Windows PowerShell:
.\.venv\Scripts\python
3. Import LDlinkPy
from ldlinkpy import list_pop, list_chips, ldpair, ldproxy
4. Try A Simple Lookup
List available 1000 Genomes populations:
list_pop()
List available genotyping SNP chips:
list_chips()
5. Run A Simple Analysis
Check LD between two variants:
ldpair("rs3", "rs4", pop="YRI")
Find proxy variants for a SNP:
ldproxy("rs7412", pop="CEU")
Public Functions
| Function | Purpose |
|---|---|
ldpair |
Query LD statistics for one or more variant pairs. |
ldmatrix |
Create an LD matrix for a set of variants. |
ldproxy |
Find proxy variants for a query variant. |
ldproxy_batch |
Run multiple LDproxy queries and write result files. |
ldtrait |
Query trait associations linked to variants in LD. |
ldexpress |
Query GTEx expression associations for variants in LD. |
ldhap |
Query haplotype and variant tables for a variant set. |
ldpop |
Query LD statistics across populations for two variants. |
snpclip |
Prune variants by LD and minor allele frequency thresholds. |
snpchip |
Identify genotyping arrays containing variants. |
list_pop |
Return available 1000 Genomes population codes. |
list_chips / list_chip_platforms |
Return available genotyping chip/platform codes. |
list_gtex_tissues |
Return GTEx tissue names and LDexpress tissue codes. |
Most endpoint functions return pandas DataFrames by default. Some functions support raw responses, file output, or endpoint-specific return shapes. See the API reference for details.
More Documentation
- API reference: public functions, parameters, return types, and common exceptions.
- Longer usage examples: endpoint-by-endpoint command-line examples for local development and exploratory testing.
- End-to-end examples: includes an LDlinkPy-only workflow examining population-specific LD, haplotype structure, and optional SNPchip coverage for published SNP tags at the Ewing sarcoma 6p25.1/RREB1 susceptibility locus.
Authorship
LDlinkPy was conceived and overseen by Timothy Myers, Stephen Chanock, and Mitchel Machiela, with code and documentation assistance from ChatGPT 5.2 Thinking (OpenAI) and Codex 5.5 High (OpenAI). Additional authors and contributors may be added as the project develops.
AI Assistance Disclosure
LDlinkPy was developed with assistance from AI coding tools and agents, including ChatGPT 5.2 Thinking (OpenAI) and Codex 5.5 High (OpenAI). AI tools assisted with code generation, implementation, and documentation. Package behavior is validated by comparing outputs against the LDlink web app and the LDlinkR R package. Human contributors conceived the project, directed development, defined validation criteria, ran validation checks, and made release decisions.
Relationship To LDlinkR
LDlinkPy is intended to provide Python access to the major LDlink workflows familiar to LDlinkR users. Function names and behavior are generally aligned where practical, while using Python conventions such as pandas DataFrames and keyword arguments.
Development Status
This package is in its first public release series. Feedback from biomedical research users is welcome, especially on endpoint behavior, documentation clarity, and example workflows.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ldlinkpy-0.4.5.tar.gz.
File metadata
- Download URL: ldlinkpy-0.4.5.tar.gz
- Upload date:
- Size: 50.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a38448aa209ad45c09f15d7114a289bcc89e011e845ac3e3271c6bd5a754a238
|
|
| MD5 |
d6b20fde7dc42978d9fb76fb5a1ac983
|
|
| BLAKE2b-256 |
77df160846404db32bb524525e351ce49342a8e24566220c0d4d37152ab5a44f
|
File details
Details for the file ldlinkpy-0.4.5-py3-none-any.whl.
File metadata
- Download URL: ldlinkpy-0.4.5-py3-none-any.whl
- Upload date:
- Size: 45.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d0a812e8f58c3c62c3c80530016cc1d621b03adeda0db737d94e6eb1ec951d9
|
|
| MD5 |
7a12676f40b72c34decc4376e84197ce
|
|
| BLAKE2b-256 |
d3cb9b1c75c788da45eeaf798b0a286695a1f6995625a1535621dc452ec77e90
|