bio-variant-calling-joint-calling
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.
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-variant-calling-joint-calling --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
## Version Compatibility Reference examples tested with: GATK 4.5+, bcftools 1.19+ Before using code patterns, verify installed versions match. If versions differ: - CLI: `<tool> --version` then `<tool> --help` to confirm flags If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Joint Calling **"Joint genotype my cohort samples"** → Combine per-sample gVCFs into a single cohort callset with consistent genotyping across all sites, enabling VQSR and population-level analysis. - CLI: `gatk HaplotypeCaller -ERC GVCF` → `gatk GenomicsDBImport` → `gatk GenotypeGVCFs` ## 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 ## Workflow Overview ``` Sample BAMs │ ├── HaplotypeCaller (per-sample, -ERC GVCF) │ └── sample1.g.vcf.gz, sample2.g.vcf.gz, ... │ ├── CombineGVCFs or GenomicsDBImport │ └── Combine into cohort database │ ├── GenotypeGVCFs │ └── Joint geno
- Version Compatibility
- Why Joint Calling?
- Workflow Overview
- Step 1: Per-Sample gVCF Generation
- Batch Processing
- Step 2a: CombineGVCFs (Small Cohorts)
- From Sample Map
- Step 2b: GenomicsDBImport (Large Cohorts)
- Update GenomicsDB with New Samples
- Step 3: GenotypeGVCFs
- From Combined gVCF
- From GenomicsDB
- With Allele-Specific Annotations
- Step 4: Filtering
Generate gVCF for each sample gatk HaplotypeCaller \ With intervals (faster) Process all samples for bam in *.bam; do done wait gatk CombineGVCFs \ Create sample map file sample1 /path/to/sample1.g.vcf.gz
What does the bio-variant-calling-joint-calling skill do?
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.
How do I install it?
Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-variant-calling-joint-calling --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
