BI
数据与复现
bio-entrez-link
bio-entrez-link:获取 linked records across NCBI Entrez databases。
FreedomIntelligence/OpenClaw-Medical-Skills查看
维护者 FreedomIntelligence · 最近更新 2026年4月1日
bio-blast-searches:运行 BLAST searches against local 或 remote databases ,用于 sequence homology。
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-blast-searches
技能摘要
原始文档
| Program | Query | Database | Use Case |
|---|---|---|---|
blastn | Nucleotide | Nucleotide | DNA/RNA sequence similarity |
blastp | Protein | Protein | Protein sequence similarity |
blastx | Nucleotide | Protein | Find protein hits for DNA query |
tblastn | Protein | Nucleotide | Find DNA encoding protein-like |
tblastx | Nucleotide | Nucleotide | Translated vs translated |
Submit a BLAST query to NCBI servers.
from Bio.Blast import NCBIWWW
## Common Databases
**Nucleotide:**
| Database | Description |
|----------|-------------|
| `nt` | All GenBank + EMBL + DDBJ |
| `refseq_rna` | RefSeq RNA sequences |
| `refseq_genomic` | RefSeq genomic sequences |
**Protein:**
| Database | Description |
|----------|-------------|
| `nr` | Non-redundant protein |
| `refseq_protein` | RefSeq proteins |
| `swissprot` | SwissProt (curated) |
| `pdb` | Protein structures |
相关技能
bio-entrez-link:获取 linked records across NCBI Entrez databases。
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…