Design armored CAR-T cells with cytokine payloads and resistance mechanisms.
bio-vcf-manipulation
维护者 FreedomIntelligence · 最近更新 2026年4月1日
Merge, concatenate, sort, intersect, and subset VCF files using bcftools. Use when combining variant files, comparing call sets, or restructuring VCF data.
原始来源
FreedomIntelligence/OpenClaw-Medical-Skills
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-vcf-manipulation
- 维护者
- FreedomIntelligence
- 许可
- MIT
- 最近更新
- 2026年4月1日
技能摘要
来自 SKILL.md 的关键信息
核心说明
- Merge,concat,sort,、 compare VCF files ,使用 bcftools。
- bcftools merge -l files.txt -Oz -o merged.vcf.gz。
原始文档
SKILL.md 摘录
Operations Overview
| Operation | Command | Use Case |
|---|---|---|
| Merge | bcftools merge | Combine samples from multiple VCFs |
| Concat | bcftools concat | Combine regions from multiple VCFs |
| Sort | bcftools sort | Sort unsorted VCF |
| Intersect | bcftools isec | Compare/intersect call sets |
| Subset | bcftools view | Extract samples or regions |
bcftools merge
Goal: Combine VCF files from different samples into a single multi-sample VCF.
Approach: Use bcftools merge to join files with different sample columns at shared genomic positions.
"Merge my per-sample VCFs into one file" → Combine variant records from multiple samples into a single multi-sample VCF.
Combine multiple VCF files with different samples at the same positions.
Output missing genotypes as ./. (default)
bcftools merge sample1.vcf.gz sample2.vcf.gz -Oz -o merged.vcf.gz
适用场景
- 适合在combining variant files,comparing call sets,或 restructuring VCF data时使用。
不适用场景
- Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。
上游相关技能
- vcf-basics - View and query VCF files
- filtering-best-practices - Filter variants before manipulation
- variant-normalization - Normalize before comparing
- vcf-statistics - Compare statistics after manipulation
相关技能
相关技能
arxiv-search
Search arXiv physics, math, and computer science preprints using natural language queries. Powered by Valyu semantic sea…
Autonomous oncology research agent: literature mining, trial matching, biomarker analysis, and treatment hypothesis gene…
Preprocesses cell-free DNA sequencing data including adapter trimming, alignment optimized for short fragments, and UMI-…