Agent skill

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.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-codeships scripts
Install
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.

Facts
Files in the skill folder: 3
SKILL.md size: 8 KB
Bundled scripts: yes
Path: skills/bio-variant-calling-joint-calling/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## 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

What's inside
Steps it walks through
  1. Version Compatibility
  2. Why Joint Calling?
  3. Workflow Overview
  4. Step 1: Per-Sample gVCF Generation
  5. Batch Processing
  6. Step 2a: CombineGVCFs (Small Cohorts)
  7. From Sample Map
  8. Step 2b: GenomicsDBImport (Large Cohorts)
  9. Update GenomicsDB with New Samples
  10. Step 3: GenotypeGVCFs
  11. From Combined gVCF
  12. From GenomicsDB
  13. With Allele-Specific Annotations
  14. Step 4: Filtering
Ships with 2 files
  • examples/joint_calling_gatk.sh
  • usage-guide.md
Commands it runs
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
More from OpenClaw-Medical-Skills
All skills →
About this skill
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.

Keep going