Estimates telomere content from WGS BAM files by quantifying telomeric repeat reads (TTAGGG/CCCTAA). Provides a biological age proxy based on telomere attrition.
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.
lgalarno/telomerehunter:latest
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}/
tel_content — GC-corrected telomeric reads per million mapped reads--user root is REQUIRED — Docker container cannot write output files without root permissions--tumor_only mode is REQUIRED for germline WGS (there is no matched normal sample)