Design armored CAR-T cells with cytokine payloads and resistance mechanisms.
bio-variant-calling-joint-calling
维护者 FreedomIntelligence · 最近更新 2026年4月1日
Joint genotype calling across multiple samples using GATK CombineGVCFs and GenotypeGVCFs. Essential for cohort studies, population genetics, and leveraging VQSR. Use when performing joint genotyping across multiple samples.
原始来源
FreedomIntelligence/OpenClaw-Medical-Skills
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-variant-calling-joint-calling
- 维护者
- FreedomIntelligence
- 许可
- MIT
- 最近更新
- 2026年4月1日
技能摘要
来自 SKILL.md 的关键信息
核心说明
- CLI:gatk HaplotypeCaller -ERC GVCF → gatk GenomicsDBImport → gatk GenotypeGVCFs。
- Joint genotype my cohort samples" → Combine per-sample gVCFs into single cohort callset ,支持 consistent genotyping across all sites,enabling VQSR 、 population-level analysis. CLI:gatk HaplotypeCaller -ERC GVCF → gatk GenomicsDBImport → gatk GenotypeGVCFs。
- gatk HaplotypeCaller \ -R reference.fa \ -I sample1.bam \ -O sample1.g.vcf.gz \ -ERC GVCF。
原始文档
SKILL.md 摘录
Why Joint Calling?
- Improved sensitivity - Leverage information across samples
- Consistent genotyping - Same sites called across all samples
- VQSR eligible - Requires cohort for machine learning filtering
- Population analysis - Allele frequencies across cohort
With intervals (faster)
gatk HaplotypeCaller
-R reference.fa
-I sample1.bam
-O sample1.g.vcf.gz
-ERC GVCF
-L intervals.bed
## Process all samples
for bam in *.bam; do
sample=$(basename $bam .bam)
gatk HaplotypeCaller \
-R reference.fa \
-I $bam \
-O ${sample}.g.vcf.gz \
-ERC GVCF &
done
wait
适用场景
- 适合在performing joint genotyping across multiple samples时使用。
不适用场景
- Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。
上游相关技能
- variant-calling/gatk-variant-calling - Single-sample calling
- variant-calling/filtering-best-practices - VQSR and hard filtering
- population-genetics/plink-basics - Population analysis of joint calls
- workflows/fastq-to-variants - End-to-end germline pipeline
相关技能
相关技能
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-…