gatk-haplotypecaller
Quick Start
- Command:
gatk HaplotypeCaller - Local executable:
/home/vimalinx/miniforge3/envs/bio/bin/gatk - Install hint: Install GATK into the active bioinformatics environment or put a working
gatkexecutable onPATH.
When To Use This Tool
- Per-sample germline SNP and indel calling from analysis-ready BAM or CRAM files.
- Emitting reference-confidence gVCFs for later joint genotyping.
- Standard Broad/GATK-style germline workflows after alignment, duplicate handling, and BQSR.
Common Patterns
gatk HaplotypeCaller \
-R reference.fa \
-I sample.analysis_ready.bam \
-O sample.g.vcf.gz \
-ERC GVCF
Guardrails
- Input BAM or CRAM should already be analysis-ready and matched to the exact reference build.
- Joint calling workflows usually want
-ERC GVCF, not a raw single-sample VCF. - This skill definition only proves the workflow step is known; the local
gatkexecutable still has to exist for real execution.