用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vimalinx/bio-agent --skill wgsim命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | wgsim |
| description | Use when simulating paired-end short reads from a reference FASTA for testing, benchmarking, or pipeline validation |
| disable-model-invocation | true |
| user-invocable | true |
wgsim [options] <in.ref.fa> <out.read1.fq> <out.read2.fq>/home/vimalinx/miniforge3/envs/bio/bin/wgsim# 1) Generate one million paired-end read pairs with a fixed seed
wgsim \
-N 1000000 \
-S 42 \
ref.fa \
sim_R1.fq \
sim_R2.fq
# 2) Simulate 150 bp reads with a 350 bp insert size
wgsim \
-1 150 \
-2 150 \
-d 350 \
-s 30 \
ref.fa \
sim_R1.fq \
sim_R2.fq
# 3) Increase mutation and indel rates for a tougher benchmark
wgsim \
-r 0.005 \
-R 0.20 \
-X 0.50 \
-e 0.01 \
ref.fa \
sim_R1.fq \
sim_R2.fq
-r), indel (-R, -X), and sequencing error (-e) parameters explicitly instead of relying on remembered defaults.-S whenever you need reproducible benchmarks.wgsim requires two FASTQ output paths; it is a paired-end simulator.-h enables haplotype mode, it is not a help flag.--help / --version print usage with invalid-option noise; use references/help.md or a no-argument invocation to inspect usage instead.-A, so reference composition can affect realized output yield.