用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vimalinx/bio-agent --skill bwa命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | bwa |
| description | Use when aligning low-divergence DNA sequence reads to a reference genome |
| disable-model-invocation | true |
| user-invocable | true |
bwa/home/vimalinx/miniforge3/envs/bio/bin/bwabwa index to build the reference index and bwa mem for modern short-read alignment.bwa mem is the normal starting point.# 1) Build the BWA index
bwa index reference.fa
# 2) Paired-end alignment with read group
bwa mem \
-t 16 \
-R '@RG\tID:sample1\tSM:sample1\tPL:ILLUMINA' \
reference.fa \
sample_R1.fastq.gz sample_R2.fastq.gz \
> sample.sam
# 3) Single-end alignment
bwa mem \
-t 8 \
reference.fa \
sample.fastq.gz \
> sample.sam
bwa mem, usually with explicit -t and a correct read-group line.samtools.bwa is a dispatcher; bwa --help is not the interface you want, while bwa, bwa mem, and bwa index are.bwa mem expects an indexed reference; forgetting bwa index is a common failure mode.@RG line for any workflow that will later merge BAMs or call variants.