用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vimalinx/bio-agent --skill samtools命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | samtools |
| description | Use when working with SAM, BAM, or CRAM alignment files to sort, index, view, convert, or compute statistics. |
| disable-model-invocation | true |
| user-invocable | true |
samtools/home/vimalinx/miniforge3/envs/bio/bin/samtoolsreferences/help.md for full command documentation and optionssamtools is a dispatcher, not a single operation.# 1) Convert SAM to BAM
samtools view -b -o sample.bam sample.sam
# 2) Sort and index a BAM
samtools sort -@ 8 -o sample.sorted.bam sample.bam
samtools index sample.sorted.bam
# 3) Inspect basic mapping statistics
samtools flagstat sample.sorted.bam
samtools stats sample.sorted.bam > sample.stats.txt
# 4) Extract one region
samtools view sample.sorted.bam chr1:100000-110000
flagstat, stats, coverage, or depth to sanity-check the alignment.fastq, fasta, faidx, or dict only when the workflow specifically needs them.samtools quickcheck is a cheap integrity test before burning compute on a broken BAM/CRAM.-@ for thread-aware subcommands, but do not assume every subcommand parallelizes the same way.