用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vimalinx/bio-agent --skill legacy-blast-pl命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when joint-genotyping one or more germline gVCFs into a cohort VCF with GATK GenotypeGVCFs.
Use when running GATK HaplotypeCaller to emit per-sample germline variant calls or gVCFs from analysis-ready BAM/CRAM inputs.
Use when splitting mixed accession-like text into one lowercase token per line in EDirect-style text pipelines.
基于 SOC 职业分类
正在显示 SKILL.md
| name | legacy-blast-pl |
| description | Use when converting NCBI C toolkit BLAST command lines to NCBI C++ toolkit equivalents. |
| disable-model-invocation | true |
| user-invocable | true |
legacy_blast.pl <legacy_program> <legacy_args> [--print_only] [--path /path/to/blast/bin]/home/vimalinx/miniforge3/envs/bio/bin/legacy_blast.plreferences/help.mdblastall, formatdb, fastacmd, or related legacy programs.--print_only before executing them.# 1) Preview a blastall-to-BLAST+ translation
legacy_blast.pl \
blastall -p blastp -i query.fa -d nr -e 1e-5 \
--print_only \
--path /home/vimalinx/miniforge3/envs/bio/bin
# 2) Preview a formatdb migration
legacy_blast.pl \
formatdb -i proteins.fa -p T \
--print_only \
--path /home/vimalinx/miniforge3/envs/bio/bin
# 3) Execute the translated command directly
legacy_blast.pl \
fastacmd -d nr -s NP_414543 \
--path /home/vimalinx/miniforge3/envs/bio/bin
--print_only first and review the translated BLAST+ command for semantic drift.--path at the BLAST+ binaries you actually want to use on this machine.--print_only and --path must use double dashes and appear at the end of the legacy command line./usr/bin, which is usually wrong in this workspace; prefer --path /home/vimalinx/miniforge3/envs/bio/bin.blastall, megablast, blastpgp, bl2seq, rpsblast, fastacmd, formatdb, and seedtop.--version only works as the first and only argument to the script.