bio-blast-searches
Run BLAST searches against local or remote databases for sequence homology.
Maintainer FreedomIntelligence · Last updated April 1, 2026
Retrieve linked records across NCBI Entrez databases.
Original source
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-entrez-link
Skill Snapshot
Source Doc
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:
| Parameter | Description | Example |
|---|---|---|
dbfrom | Source database | 'gene' |
db | Target database | 'protein' |
id | Source record ID(s) | '672' or '672,675' |
linkname | Specific link type | 'gene_protein_refseq' |
cmd | Link command | 'neighbor', 'neighbor_score' |
| From | To | Link Name | Description |
|---|---|---|---|
| gene | protein | gene_protein | All proteins |
| gene | protein | gene_protein_refseq | RefSeq proteins only |
| gene | nucleotide | gene_nuccore | Nucleotide sequences |
| gene | nucleotide | gene_nuccore_refseqrna | RefSeq mRNA |
| gene | pubmed | gene_pubmed | Related publications |
| gene | homologene | gene_homologene | Homologs |
| gene | snp | gene_snp | SNPs in gene |
| gene | clinvar | gene_clinvar | Clinical variants |
Related skills
Run BLAST searches against local or remote databases for sequence homology.
Set up and run BLAST+ locally with custom databases.
Taxonomic classification of metagenomic reads using Kraken2. Fast k-mer based classification against RefSeq database. Use when performing in…
KEGG pathway and module enrichment analysis using clusterProfiler enrichKEGG and enrichMKEGG. Use when identifying metabolic and signaling p…