数据与复现科研数据库FreedomIntelligence/OpenClaw-Medical-Skills数据与复现
BI

bio-entrez-link

维护者 FreedomIntelligence · 最近更新 2026年4月1日

bio-entrez-link:获取 linked records across NCBI Entrez databases。

OpenClawNanoClaw选题发现数据建库bio-entrez-link🧠 bioos extended suitebioos extended bioinformatics suiteretrieve

原始来源

FreedomIntelligence/OpenClaw-Medical-Skills

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

维护者
FreedomIntelligence
许可
MIT
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

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

原始文档

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 bio-entrez-link in 科研工作流 aligned ,支持 this subject area。
  • Follow upstream documentation ,用于 full working procedure。

不适用场景

  • Do not assume this entry replaces original database documentation 或 API notes。

上游相关技能

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

相关技能

相关技能

返回目录
BI
数据与复现科研数据库

bio-blast-searches

bio-blast-searches:运行 BLAST searches against local 或 remote databases ,用于 sequence homology。

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研数据库

bio-local-blast

bio-local-blast:Set up 、 run BLAST+ locally ,支持 custom databases。

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研数据库

bio-metagenomics-kraken

bio-metagenomics-kraken:Taxonomic 分类 of metagenomic reads ,使用 Kraken2。 Fast k-mer based 分类 against RefSeq database。 适合在p…

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研数据库

bio-pathway-kegg-pathways

bio-pathway-kegg-pathways:KEGG pathway 、 module enrichment analysis ,使用 clusterProfiler enrichKEGG 、 enrichMKEGG。 支持 400…

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看