ソース情報
- リポジトリ
- vimalinx/bio-agent
- ソースの最終更新活動
- 2026年3月30日 16:28
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/vimalinx/bio-agent --skill bwaコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.