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.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill 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: 14 KB
Bundled scripts: yes
Path: skills/bioskills/joint-calling/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

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 Matters Single-sample calling discards cross-sample evidence that is critical for accurate genotyping: - **Statistical power from shared evidence** - A site with 2 alt reads in one sample is borderline and would typically be missed. If 50 other samples in the cohort also show 2 alt reads at that site, the evidence is overwhelming and the variant is clearly real. Joint calling aggregates this weak-per-sample signal into strong cohort-level evidence. - **Genotype refinement via cohort priors** - Ind

What's inside
Steps it walks through
  1. Version Compatibility
  2. Why Joint Calling Matters
  3. Cohort Size Decision Table
  4. Workflow Overview
  5. Step 1: Per-Sample gVCF Generation
  6. Batch Processing
  7. Step 2a: CombineGVCFs (Small Cohorts)
  8. From Sample Map
  9. Step 2b: GenomicsDBImport (Large Cohorts)
  10. Update GenomicsDB with New Samples
  11. GenomicsDB Critical Caveats
  12. Step 3: GenotypeGVCFs
  13. From Combined gVCF
  14. From GenomicsDB
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 awesome-bio-agent-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 BioTender-max/awesome-bio-agent-skills --skill 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 BioTender-max/awesome-bio-agent-skills, a repository with 135 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