genomics-pipeline

Step 10: Telomere Length Estimation

What This Does

Estimates telomere content from WGS BAM files by quantifying telomeric repeat reads (TTAGGG/CCCTAA). Provides a biological age proxy based on telomere attrition.

Why

Telomere length correlates with cellular aging and is a biomarker for age-related disease risk. Shorter telomeres are associated with cardiovascular disease, cancer predisposition, and reduced lifespan. Comparing telomere content between individuals of similar age provides a relative aging benchmark.

Tool

Docker Image

lgalarno/telomerehunter:latest

Command

SAMPLE=your_sample
GENOME_DIR=/path/to/your/data

docker run --rm --user root \
  -v ${GENOME_DIR}/${SAMPLE}:/data \
  lgalarno/telomerehunter:latest \
  telomerehunter \
    -ibt /data/aligned/${SAMPLE}_sorted.bam \
    -o /data/telomere \
    -p ${SAMPLE} \
    --tumor_only

# Output: telomere content report in /data/telomere/${SAMPLE}/

Key Metric

Important Notes