BI
数据与复现
bio-blast-searches
bio-blast-searches:运行 BLAST searches against local 或 remote databases ,用于 sequence homology。
FreedomIntelligence/OpenClaw-Medical-Skills查看
维护者 FreedomIntelligence · 最近更新 2026年4月1日
bio-entrez-link:获取 linked records across NCBI Entrez databases。
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-entrez-link
技能摘要
原始文档
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 |
相关技能
bio-blast-searches:运行 BLAST searches against local 或 remote databases ,用于 sequence homology。
bio-local-blast:Set up 、 run BLAST+ locally ,支持 custom databases。
bio-metagenomics-kraken:Taxonomic 分类 of metagenomic reads ,使用 Kraken2。 Fast k-mer based 分类 against RefSeq database。 适合在p…
bio-pathway-kegg-pathways:KEGG pathway 、 module enrichment analysis ,使用 clusterProfiler enrichKEGG 、 enrichMKEGG。 支持 400…