All Possible Substitutions In The Human Reference Genome
1
0
Entering edit mode
10.1 years ago

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 • 3.1k views
ADD COMMENT
5
Entering edit mode
10.1 years ago

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"

ADD COMMENT
3
Entering edit mode

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.

ADD REPLY

Login before adding your answer.

Traffic: 2653 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6