Variant Human
A variant human refers to the study of genetic variation in the human genome, specifically the identification, annotation, and interpretation of sequence differences from a reference genome. This guide is for bioinformaticians, clinical geneticists, and life science researchers who need a source bounded, practical framework for analyzing human germline and somatic variants. You will learn core concepts, decision points, a reproducible workflow, quality checks, common mistakes, and the inherent limits of variant interpretation. Because the field evolves rapidly, this guide prioritises tools and standards documented in authoritative resources such as the NCBI Bookshelf source: NCBI Bookshelf and EMBL EBI training materials source: EMBL-EBI Training.
At a Glance
| Aspect | Description |
|---|---|
| Core Definition | Genetic differences (SNVs, indels, SVs) between an individual human genome and a reference genome (GRCh38). |
| Key Data | Whole genome sequencing, whole exome sequencing, targeted panels from repositories like the NCBI Sequence Read Archive source: NCBI Sequence Read Archive. |
| Main Tools | GATK, bcftools, FreeBayes for calling, ANNOVAR, VEP, SnpEff for annotation, Bioconductor packages source: Bioconductor for downstream analysis. |
| Workflow | Raw reads to quality control to alignment to variant calling to annotation to filtering and interpretation. |
| Common Pitfalls | Strand bias, mapping errors, population stratification, ignoring allele frequency databases. |
| Uncertainty | Variants of unknown significance, technical artifacts, incomplete penetrance. |
Core Concepts of Human Genetic Variation
Human genetic variation exists on multiple scales. The most common are single nucleotide variants (SNVs) which change one base. Insertions and deletions (indels) of one to several bases are also frequent. Larger structural variants (SVs) involve rearrangements of at least 50 base pairs. Understanding these categories is essential for choosing appropriate calling algorithms. The Galaxy Training Network provides accessible tutorials on the underlying principles of variant detection source: Galaxy Training Network. Variant frequency in populations, measured in databases like gnomAD, helps distinguish benign polymorphisms from disease associated alleles. Two recent studies illustrate the diverse applications of variant analysis: a large cohort of children with neurodevelopmental disorders used craniofacial features to guide variant interpretation [6], while another study dissected both common and rare variant contributions to lung cancer risk using biobank scale data [7]. Both examples show that the context of the variant (gene function, population frequency, clinical phenotype) determines its biological meaning.
Decision Points in Variant Analysis
Before you start a variant analysis project, you must make several deliberate choices. First, decide between germline and somatic variant calling. Germline analysis detects inherited variants, typically using paired normal tissue or blood. Somatic calling, common in cancer genomics, requires a matched normal sample to distinguish true somatic mutations from inherited variants. Second, choose your variant calling strategy. The Genome Analysis Toolkit (GATK) best practices are widely accepted for germline SNVs and indels, but they require careful base quality score recalibration. Third, decide on annotation depth. Minimal annotation includes gene name, variant type, and predicted protein change. More thorough annotation integrates regulatory impact, conservation scores, and allele frequencies from population databases. For example, the shared genetic architecture between alcohol use and anxiety disorders revealed by rare and common variant analyses [8] highlights the need to consider multiple variant classes to understand complex traits. Fourth, determine your filtering thresholds. You must set minimum depth, variant quality score, and allele balance cutoffs based on your sequencing technology and application. The Bioconductor project offers decision support packages such as VariantTools and VRanges that help script these choices source: Bioconductor.
Practical Workflow for Variant Calling and Annotation
Here is a practical, reproducible workflow for human variant analysis that you can adapt to most sequencing experiments.
Obtain raw sequencing reads in FASTQ format. Deposit your data or use public data from the NCBI SRA source: NCBI Sequence Read Archive. For a standard germline analysis, aim for 30x coverage for whole genome or 100x for exome.
Perform quality control with FastQC and MultiQC. Remove adapter contamination and low quality bases with Trimmomatic or cutadapt.
Align reads to the human reference genome (GRCh38) using BWA MEM or Bowtie2. Sort and mark duplicates with Picard or sambamba. Evaluate alignment statistics with samtools flagstat.
Apply base quality score recalibration using GATK BQSR (if using GATK tools) to reduce systematic errors from sequencing machines.
Call variants. For germline SNVs and indels, use GATK HaplotypeCaller in GVCF mode for joint genotyping across samples. For somatic, use Mutect2. For structural variants, use Manta or lumpy.
Filter raw variants. GATK offers hard filters for SNVs (QD less than 2.0, FS greater than 60.0, SOR greater than 3.0) and indels (QD less than 2.0, FS greater than 200.0). Adjust based on coverage and read orientation bias.
Annotate variants with ANNOVAR, VEP, or SnpEff. Include gene name, functional region (exonic, intronic, splicing), predicted protein change (e.g., missense, nonsense), and allele frequency from gnomAD, ExAC, and 1000 Genomes.
Filter and prioritise variants. Remove common variants (allele frequency above 0.01) unless you are studying common variant associations. Apply inheritance models (autosomal dominant, recessive) if family data exist. Use pathogenicity predictors like SIFT, PolyPhen, CADD.
Validate candidate variants with visual inspection in IGV. Sanger sequencing or orthogonal genotyping is required for clinical reporting.
Quality checks should be integrated at each step. For example, after alignment, check that fewer than 1 percent of reads are unmapped and that median insert size matches the library prep. After variant calling, compute the transition transversion ratio (expected approximately 2.1 for whole genome germline). A recent study used high resolution reconstruction of cell type specific regulatory processes from bulk sequencing [9] and employed rigorous variant level quality control to ensure only high confidence sites were used in the analysis.
Common Mistakes in Variant Analysis
One frequent error is relying on a single variant caller. No caller is perfect, a consensus approach using two or more callers (e.g., GATK and FreeBayes) can reduce false positives and false negatives. Another mistake is ignoring strand bias. Variants seen only on one strand are often artifacts, especially in FFPE samples. You should check the FS and SOR metrics from GATK. A third mistake is failing to account for population stratification in association studies. Ancestry principal components or admixture estimates must be included as covariates. A fourth mistake is over interpreting variants of unknown significance (VUS). Without functional validation or segregation data, a VUS should not be reported as causative. In a study of meiotic arrest and non obstructive azoospermia, novel variants in LINC and TTM complexes were identified [10], the authors carefully applied multiple lines of evidence (recurrence, protein structure, knockout animal models) to support causality rather than relying on bioinformatics alone. Finally, many researchers use default annotation parameters without confirming they are appropriate for their species or genome build. Annotation tools built for GRCh37 can incorrectly represent transcript coordinates when used with GRCh38.
Limits and Uncertainty in Variant Interpretation
Variant interpretation operates under considerable uncertainty. First, technical limitations exist: short reads often fail to map in repetitive regions, causing false negative calls for indels and SVs. Long read sequencing may improve detection but introduces higher error rates in homopolymer stretches. Second, biological complexity adds uncertainty. Many variants occur in non coding regions with unknown regulatory effect. Rare variants are difficult to classify because population databases may lack sufficient diversity. Third, clinical interpretation guidelines (e.g., ACMG/AMP) are robust for Mendelian disorders but less developed for common complex diseases. A drug target mendelian randomization study examining GLP 1 receptor activation and mental health [11] highlighted that even well powered instrumental variable analyses can only estimate causal effects under strong assumptions that cannot be fully validated. Fourth, the human reference genome itself is a mosaic of haplotypes and may not represent any single individual, variants called against it may reflect reference bias rather than true genetic difference.
Frequently Asked Questions
1. What is the difference between a variant and a mutation? In human genetics, a variant is any difference compared to the reference genome, while a mutation is a variant that causes a disease or functional change. However, the term mutation is increasingly reserved for somatic changes in cancer or de novo changes in the germline. Use variant for population frequency and mutation when pathogenicity is established.
2. How many variants does a typical human genome have? A typical genome contains about 4 to 5 million SNVs and around 700,000 indels compared to GRCh38. Most are common and benign. Only a few thousand are in coding regions, and even fewer are predicted to alter protein function.
3. Can I use the same workflow for RNA sequencing variant calling? No, RNA sequencing requires different considerations. You must account for splicing, lower coverage depth, and allele specific expression. Use specialised callers such as GATK ASEReadCounter or rMATS for splicing variants, and apply filters that account for expression level.
4. Why do population allele frequency databases matter? Databases like gnomAD provide the frequency of each variant across diverse populations. A variant that is common (e.g., allele frequency above 0.01) is unlikely to be a rare, highly penetrant disease causing mutation. Conversely, a variant absent from large databases is a candidate for a role in rare monogenic disorders.
References and Further Reading
- NCBI Bookshelf: free biomedical books covering human genome variation and clinical genetics source: NCBI Bookshelf.
- EMBL-EBI Training: tutorials on variant annotation with Ensembl VEP and other tools source: EMBL-EBI Training.
- Galaxy Training Network: hands on exercises for variant calling, filtering, and interpretation source: Galaxy Training Network.
- Bioconductor: variant analysis packages such as VariantAnnotation, VRanges, and Rsamtools source: Bioconductor.
- NCBI Sequence Read Archive: repository for raw sequencing data used in variant discovery source: NCBI Sequence Read Archive.
- Craniofacial features and pathogenic variants in neurodevelopmental disorders [6] provides an example of phenotype guided variant interpretation.
- Genetic architecture of lung cancer from common and rare variant analyses [7] illustrates biobank scale methodology.
- Shared genetic architecture of alcohol use and anxiety disorders [8] demonstrates joint analysis of variant classes.
- High resolution reconstruction of regulatory processes from bulk samples [9] shows advanced variant QC.
- Novel variants in LINC and TTM complexes in meiotic arrest [10] exemplifies careful functional validation.
- GLP 1 receptor activation and mental health mendelian randomization [11] highlights interpretation limits.