Data & ReproScientific DatabasesFreedomIntelligence/OpenClaw-Medical-SkillsData & Reproduction
BI

bio-entrez-link

Maintainer FreedomIntelligence · Last updated April 1, 2026

Retrieve linked records across NCBI Entrez databases.

OpenClawNanoClawDiscoveryDataset Buildingbio-entrez-link🧠 bioos extended suitebioos extended bioinformatics suiteretrieve

Original source

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-entrez-link

Maintainer
FreedomIntelligence
License
MIT
Last updated
April 1, 2026

Skill Snapshot

Key Details From SKILL.md

2 min

Key Notes

  • Navigate between NCBI databases using Biopython's Entrez module (ELink utility).
  • handle = Entrez.elink(dbfrom='gene', db='protein', id='672') record = Entrez.read(handle) handle.close().

Source Doc

Excerpt From SKILL.md

Entrez.elink() - Cross-Database Links

Find related records in the same or different databases.


## Extract linked IDs

linkset = record[0]
if linkset['LinkSetDb']:
    links = linkset['LinkSetDb'][0]['Link']
    protein_ids = [link['Id'] for link in links]
    print(f"Found {len(protein_ids)} linked proteins")

Key Parameters:

ParameterDescriptionExample
dbfromSource database'gene'
dbTarget database'protein'
idSource record ID(s)'672' or '672,675'
linknameSpecific link type'gene_protein_refseq'
cmdLink command'neighbor', 'neighbor_score'

Gene to Other Databases

FromToLink NameDescription
geneproteingene_proteinAll proteins
geneproteingene_protein_refseqRefSeq proteins only
genenucleotidegene_nuccoreNucleotide sequences
genenucleotidegene_nuccore_refseqrnaRefSeq mRNA
genepubmedgene_pubmedRelated publications
genehomologenegene_homologeneHomologs
genesnpgene_snpSNPs in gene
geneclinvargene_clinvarClinical variants

Use cases

  • Use bio-entrez-link in research workflows aligned with this subject area.
  • Follow the upstream documentation for the full working procedure.

Not for

  • Do not assume this entry replaces the original database documentation or API notes.

Upstream Related Skills

  • entrez-search - Search databases before linking
  • entrez-fetch - Retrieve records after finding linked IDs
  • batch-downloads - Download many linked records efficiently

Related skills

Related skills

Back to directory
BI
Data & ReproScientific Databases

bio-blast-searches

Run BLAST searches against local or remote databases for sequence homology.

OpenClawNanoClawDiscovery
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproScientific Databases

bio-local-blast

Set up and run BLAST+ locally with custom databases.

OpenClawNanoClawDiscovery
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproScientific Databases

bio-metagenomics-kraken

Taxonomic classification of metagenomic reads using Kraken2. Fast k-mer based classification against RefSeq database. Use when performing in…

OpenClawNanoClawDiscovery
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproScientific Databases

bio-pathway-kegg-pathways

KEGG pathway and module enrichment analysis using clusterProfiler enrichKEGG and enrichMKEGG. Use when identifying metabolic and signaling p…

OpenClawNanoClawDiscovery
FreedomIntelligence/OpenClaw-Medical-SkillsView