用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vimalinx/bio-agent --skill tblastn-vdb命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | tblastn-vdb |
| description | Use when searching protein queries against translated SRA or WGS-backed VDB databases with BLAST. |
| disable-model-invocation | true |
| user-invocable | true |
tblastn_vdb -query proteins.fa -db <SRA_or_WGS_name> [options]/home/vimalinx/miniforge3/envs/bio/bin/tblastn_vdbtblastn-style searches without first building a local translated BLAST database.-sra_mode.-matrix, -evalue, -comp_based_stats, or -in_pssm.# 1) Search unaligned reads only with tabular output
tblastn_vdb \
-query proteins.fa \
-db SRR123456 \
-sra_mode 0 \
-outfmt 6 \
-evalue 1e-6 \
-num_threads 8
# 2) Search aligned reference sequences only
tblastn_vdb \
-query proteins.fa \
-db SRR123456 \
-sra_mode 1 \
-out aligned_refs.txt
# 3) Include filtered reads and search from a PSI-BLAST checkpoint
tblastn_vdb \
-in_pssm profile.chk \
-db SRR123456 \
-sra_mode 2 \
-include_filtered_reads \
-outfmt "6 qaccver saccver pident length evalue bitscore"
-sra_mode explicitly.-outfmt, -evalue, -matrix, -comp_based_stats, and -num_threads.-db here means an SRA or WGS database name; it is not a standard local BLAST DB path.-help and -version; autogenerated --help or --version captures are wrong for the live binary.Must specify at least one SRA/WGS database, so missing -db is the first thing to check.-sra_mode 0 searches unaligned reads only, 1 searches aligned reference sequences only, and 2 searches both; record that choice in reproducible workflows.-query and -in_pssm are mutually exclusive, and -db_gencode matters if the subject database needs a non-standard translation table.