用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vimalinx/bio-agent --skill find-in-gene命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | find-in-gene |
| description | Use when filtering EDirect `GENE` XML records by strand and coordinate overlap to emit matching gene names. |
| disable-model-invocation | true |
| user-invocable | true |
CLI tool from the bioconda package entrez-direct for filtering GENE XML on strand and interval overlap.
cat genes.xml | PATH=/home/vimalinx/miniforge3/envs/bio/bin:$PATH /home/vimalinx/miniforge3/envs/bio/bin/find-in-gene plus 1200 1800/home/vimalinx/miniforge3/envs/bio/bin/find-in-genereferences/help.md for full usage detailsMin / Max span overlaps a query interval in GENE XML.plus or minus.xtract wrapper in larger EDirect XML pipelines.# 1) Find plus-strand genes overlapping a region
cat genes.xml | \
PATH=/home/vimalinx/miniforge3/envs/bio/bin:$PATH \
/home/vimalinx/miniforge3/envs/bio/bin/find-in-gene plus 1200 1800
# 2) Query minus-strand overlaps from an EDirect pipeline
upstream_gene_xml_command | \
PATH=/home/vimalinx/miniforge3/envs/bio/bin:$PATH \
/home/vimalinx/miniforge3/envs/bio/bin/find-in-gene minus 50000 52000
GENE pattern with Name, Strand, Min, and Max elements.strand min max. Supplying only two causes xtract to fail with empty numeric constraints.Name; it does not fetch gene records on its own.xtract to be on PATH; absolute-path invocation alone is not sufficient in a bare shell.