This is a test version of Biostars. For the public version, visit https://www.biostars.org.
All Possible Substitutions In The Human Reference Genome

I was recently reading the CADD paper, they say that "all 8.6 billion possible substitutions in the human reference genome (GRCh37)". I thought possible substituiions should be more than that because of the genome size is arround 3 billion bases. Why is it different ?

human

1 answer

count all ATGC bases in the genome:

$ cat human_g1k_v37.fasta | grep -v ">" | tr -d -c "[ATGCatgc]" | wc -c
2864785220

2864785220*3 = 8,594,355,660 ~ "8.6 billion possible substitutions"

To expand on what Pierre shows here, there are large stretches of the genome where the sequence has not been resolved and is represented by "N". These are especially common near the centromeres and telomeres.

Log in to answer this question.