bio-entrez-link
Find cross-database references between NCBI databases using Biopython Bio.Entrez (ELink). Use when navigating gene to protein/structure, sequence to publication, PubMed to GEO, BioProject to SRA runs, or discovering all link relationships for a record. Covers linkname semantics, cmd= variants, asymmetric link warnings, neighbor_history for >200 input IDs, and per-database link tables.
What this skill does
## Version Compatibility Reference examples tested with: BioPython 1.83+, Entrez Direct 21.0+ Before using code patterns, verify installed versions match. If versions differ: - Python: `pip show biopython` then `help(Bio.Entrez.elink)` to check signatures - CLI: `elink -version` then `elink -help` to confirm flags If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Entrez Link **"Find records linked to this record in another NCBI database"** -> ELink walks the curated, weekly-maintained link tables between Entrez databases. A link is an asserted relationship (e.g. "this PubMed article describes this nucleotide sequence"), not a similarity hit. ELink is the navigation layer of Entrez. The decision that matters most is **which `linkname` to use** — not which databases. A single (`dbfrom`, `db`) pair can have a dozen `linkname` variants distinguishing curation level, evidence type, and direction. Picking the wrong one is the difference between 5 high-confidence matches and 500 noisy automated assertions. - Python: `Entrez.elink(dbfrom=..., db=..., id=..., linkname=...)` (BioPython) - CLI: `elink -db pubmed -target gene -name pubmed_gene_rif` (Entrez Direct) - R: `entrez_link(dbfrom=..., db=..., id=...)` (rentrez) ## Required Setup ```python from Bio import Entrez Entrez.email = '[email protected]' Entrez.api_key = 'optional_api_key' # raises rate to 10 req/sec ``` ## The `linkname` decision (most important) For most (`dbfrom`, `db`) pairs NCBI exposes multiple link tables. The qualifiers in the name encode the curation level and the evidence source. Choose deliberately. ### gene -> protein (representative example) | linkname | Returns | When to use | |---|---|---| | `gene_protein` | All linked proteins (curated + automated) | Exploration; expect 10-1000x more hits | | `gene_protein_refseq` | RefSeq proteins only | Reference-quality analyses; orthology | | `gene_protein_swissprot` | Reviewed UniProt entries with NCBI cross-ref | Functional annotation; literature support | ### pubmed -> gene | linkname | Returns | |---|---| | `pubmed_gene` | Genes mentioned in this paper (text-mined + curated) | | `pubmed_gene_rif` | Genes with a Reference Into Function (curated, high-quality) | | `pubmed_gene_pubmed` | Other PubMed records sharing gene linkage (rare use) | ### nucleotide -> protein | linkname | Returns | |---|---| | `nuccore_protein` | All proteins encoded by this nucleotide record (CDS-linked) | | `nuccore_protein_refseq` | RefSeq proteins only | ### Discover what link names exist for a pair ```python h = Entrez.elink(dbfrom='gene', db='protein', id='672', cmd='acheck') record = Entrez.read(h); h.close() for ls in record[0]['IdCheckList']['IdLinkSet'][0]['LinkInfo']: print(f'{ls["Name"]} -> {ls["DbTo"]} | {ls["MenuTag"]} ({ls["HtmlTag"]})') ``` `cmd='acheck'` is the only authoritative way to enumerate available linknames — they change with each NCBI release. ## Decision table: which `cmd` for which goal | Goal | cmd | Returns | |---|---|---| | Get linked records | `neighbor` (default) | Linked IDs in target db | | Get linked + relevance scores | `neighbor_score` | IDs with similarity scores (mostly `pubmed_pubmed`) | | Get >200 source IDs in one go | `neighbor_history` | WebEnv + QueryKey for downstream EFetch | | Enumerate available links | `acheck` | List of all linknames for source IDs | | Check if any link exists | `ncheck` | Boolean per source ID | | Check specific link exists | `lcheck` | Boolean per source ID + linkname | | Get NCBI HTML link URLs | `llinks` | URLs to Entrez record pages | | Get external provider links | `prlinks` | URLs to journal sites, etc. | The `neighbor_history` cmd is essential when source `id` count exceeds ~200 — past that, the URL-length limit makes the comma-joined form fail. With `neighbor_history` ELink puts results on the history server and returns WebEnv/QueryKey for downstream pickup. ## Asymmetric link warning ELink relationships are **not guaranteed symmetric**. `pubmed_gene` and `gene_pubmed` may return different sets because: - Direction-dependent curation: gene-to-PubMed is curated by NCBI staff (GeneRIF); PubMed-to-gene includes text-mining. - Cutoffs: some link tables truncate at N best links in one direction but not the other. - Index lag asymmetry: when one db updates faster than the other. If round-trip consistency matters (e.g. "every gene mentioned in this paper, then every paper mentioning each gene"), expect the round-trip set to be larger than the input — and never assume `A -> B -> A` returns the original ID alone. ## Per-database link catalog (curated subset) ### gene | Target | Common linknames | Notes | |---|---|---| | protein | `gene_protein`, `gene_protein_refseq`, `gene_protein_swissprot` | RefSeq is the safe default | | nuccore | `gene_nuccore`, `gene_nuccore_refseqrna`, `gene_nuccore_refseqgene` | `refseqrna` for mRNA, `refseqgene` for the curated gene region | | pubmed | `gene_pubmed`, `gene_pubmed_rif` | RIF is curated and high-quality | | homologene | `gene_homologene` | Deprecated 2014 but data still queryable | | snp | `gene_snp` | dbSNP entries in gene region | | clinvar | `gene_clinvar` | Clinical variants | | omim | `gene_omim` | Disease associations | ### nuccore / nucleotide | Target | Common linknames | |---|---| | protein | `nuccore_protein`, `nuccore_protein_refseq` | | gene | `nuccore_gene` | | taxonomy | `nuccore_taxonomy` | | biosample | `nuccore_biosample` | | sra | `nuccore_sra` | | pubmed | `nuccore_pubmed`, `nuccore_pubmed_refseq` | ### protein | Target | Common linknames | |---|---| | nuccore | `protein_nuccore`, `protein_nuccore_cds`, `protein_nuccore_mrna` | | gene | `protein_gene` | | structure | `protein_structure` | | cdd | `protein_cdd` (conserved domains) | | pubmed | `protein_pubmed` | ### pubmed | Target | Common linknames | |---|---| | pubmed | `pubmed_pubmed`, `pubmed_pubmed_citedin`, `pubmed_pubmed_refs` | | gene | `pubmed_gene`, `pubmed_gene_rif` | | protein | `pubmed_protein` | | nuccore | `pubmed_nuccore` | | gds | `pubmed_gds` (GEO datasets cited in paper) | | sra | `pubmed_sra` | ### bioproject | Target | Common linknames | |---|---| | biosample | `bioproject_biosample` | | sra | `bioproject_sra` | | pubmed | `bioproject_pubmed` | ## Code patterns ### Single source -> single target **Goal:** Get RefSeq proteins for a single gene. **Approach:** ELink with explicit `linkname` to restrict to curated set. **Reference (BioPython 1.83+):** ```python def gene_to_refseq_proteins(gene_id): h = Entrez.elink(dbfrom='gene', db='protein', id=gene_id, linkname='gene_protein_refseq') r = Entrez.read(h); h.close() if not r[0]['LinkSetDb']: return [] return [link['Id'] for link in r[0]['LinkSetDb'][0]['Link']] print(gene_to_refseq_proteins('672')) # BRCA1 ``` ### Batch source -> target (small batch) **Goal:** Get linked proteins for a list of <200 gene IDs in one call. **Approach:** Comma-join IDs; one linkset per input in the response. **Reference (BioPython 1.83+):** ```python def batch_gene_protein(gene_ids): h = Entrez.elink(dbfrom='gene', db='protein', id=','.join(gene_ids), linkname='gene_protein_refseq') r = Entrez.read(h); h.close() out = {} for linkset in r: src = linkset['IdList'][0] out[src] = [link['Id'] for link in linkset['LinkSetDb'][0]['Link']] if linkset['LinkSetDb'] else [] return out ``` ### Large batch via history server **Goal:** Link 5,000 gene IDs to proteins without hitting URL-length limits. **Approach:** EPost the IDs first (chunked at 200), then ELink with `cmd='neighbor_history'` referencing the WebEnv. Downstream EFetch picks up linked IDs from the history server. **Reference (BioPython 1.83+):** ```python def post_then_link(gene_ids, target='protein', linkname='gene_protein_refseq'): # EPost in chunks
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.