S3-1

The nucleotide: the actual unit of DNA and RNA

14 min

You already know the headline: DNA is a string over a four-letter alphabet, A, C, G, T. That is true, and it is also where most people stop. They picture the letters as abstract symbols, the way "A" is just a shape on a page. That picture is wrong in a way that will cost you later. Each letter is a real physical molecule with a real shape, and the shape is not decoration. The shape is what lets the letters pair up, which is what lets DNA copy itself, which is the entire reason heredity works. So before you can reason about DNA, you need to know what a letter actually is.

The letter is one part of a unit called a nucleotide (say it noo-klee-oh-tide). The nucleotide is the true monomer of DNA and RNA, the single bead that gets strung thousands or millions of times to make a strand. Get the nucleotide right and the rest of this module falls into place. Get it wrong and everything downstream stays fuzzy.

Three parts, and only one of them carries meaning

Every nucleotide is built from exactly three pieces snapped together:

  • A sugar. In DNA this sugar is called deoxyribose. It is a small ring-shaped molecule, and it is the same in every single DNA nucleotide.
  • A phosphate group. This is a cluster of one phosphorus atom and some oxygen atoms. It carries a negative charge, and it too is identical in every nucleotide.
  • A nitrogen base. This is the part that varies. It is one of four different molecules, and which one you have is what makes the nucleotide an A, a C, a G, or a T.

Read that list again and notice the asymmetry. Two of the three parts, the sugar and the phosphate, are always the same. They do not carry information any more than the plastic of a bead carries information. Only the third part, the base, changes from one nucleotide to the next. So when someone says DNA spells a message, the message is spelled entirely in bases. The base is the letter. The sugar and phosphate are just what the letter is printed on.

The backbone: a fixed rail, the same at every position

Now string the nucleotides together. The sugar of one nucleotide links to the phosphate of the next, sugar to phosphate to sugar to phosphate, all the way down. That alternating sugar-phosphate chain is called the backbone, and here is the part worth slowing down for: because the sugar and the phosphate never change, the backbone is the same repeating structure at every position along the strand. It is a plain, uniform rail.

The bases hang off that rail. At each position along the backbone, one base sticks out, and it is one of the four. So a DNA strand is a long, boring, identical rail with a meaningful base dangling at every step.

The programmer's analogy, and exactly where it breaks

So the mapping is clean:

  • The sugar-phosphate backbone is the fixed structure of an array. Same layout at every index.
  • Each base is the value stored at that index, drawn from an alphabet of four.
  • A DNA strand is bases[0..n], a sequence you can index into, scan, and compare.

Use that model. It will serve you for most of this course. But an analogy without its limit is a bug, so here is where the array picture misleads you.

An array is directionless. arr[3] and arr[4] are just neighbors, and nothing about the array itself says which way is forward. A DNA strand is not like that. The sugar in the backbone is asymmetric, its two ends are chemically different, so the whole strand has a built-in direction. Biologists label the two ends "5 prime" and "3 prime" (written with a prime mark, after two positions on the sugar ring). Every strand runs 5 prime to 3 prime, and the machinery that reads and copies DNA only works in one of those directions. So the rail is not a neutral container. It is a one-way track. An array does not have that, and if you forget it, you will be baffled later when the copying machinery insists on running only one way. You will meet 5 prime and 3 prime again in the replication lessons. For now, just log the caveat: real DNA has a direction that a plain array does not.

The second place the analogy thins out: array slots are inert storage, but a base is a physical object that can reach across and grab a partner. That grabbing is the whole game, and no array does it. The next lesson is entirely about it.

DNA versus RNA: one atom in the sugar

There is a close cousin to DNA called RNA, and the difference is almost entirely in that sugar. DNA's sugar is deoxyribose. RNA's sugar is ribose. The names give it away: "deoxy" means "missing an oxygen." Ribose has one more oxygen atom (one more OH group) at a specific spot on the ring than deoxyribose does. That is the core structural difference between the two molecules' backbones, one oxygen.

That one atom has consequences. The extra oxygen makes RNA more chemically reactive and less stable, which is a big reason a cell uses stable DNA for long-term storage (the archive) and less stable RNA for short-lived working copies. There is a second difference in the alphabet: RNA uses a base called uracil (U) in place of thymine (T), so RNA's four letters are A, C, G, U. But notice what did not change. The three-part plan is identical. Sugar, phosphate, base. The backbone-as-rail idea holds. RNA is the same design with a slightly different sugar and one swapped letter.

Key terms

nucleotide
The single repeating building block of DNA and RNA, made of a sugar, a phosphate, and one nitrogen base.
nitrogen base
The information-carrying part of a nucleotide, one of four molecules (A, C, G, T in DNA) whose identity makes the nucleotide a particular letter.
phosphate group
The negatively charged cluster of phosphorus and oxygen that links one nucleotide's sugar to the next, forming the backbone.
deoxyribose
The sugar used in DNA, so named because it is missing one oxygen compared to ribose.
ribose
The sugar used in RNA, which has one more oxygen than deoxyribose, making RNA less stable than DNA.
sugar-phosphate backbone
The uniform alternating chain of sugars and phosphates that runs the length of a strand and holds the bases in order.
5 prime and 3 prime
The two chemically different ends of a strand, which give DNA a built-in reading direction that always runs 5 prime to 3 prime.
Base and nucleoside and nucleotide: three words for nested things

You may see three similar terms and wonder if they are the same. They are nested. The base alone (adenine, say) is just the nitrogen base. Attach it to the sugar and you have a nucleoside. Add the phosphate to that and you have a nucleotide, the full unit that goes into a strand. So base is inside nucleoside is inside nucleotide, like a value, a value with its slot, and a value with its slot wired into the array. You will mostly only need the word nucleotide, but now the other two will not surprise you.

Check yourself

1. A nucleotide is made of three parts. Which one carries the information?

2. Why can a bioinformatics tool load a genome as just the string ACGT and ignore the sugars and phosphates entirely?

3. What is the core structural difference between the DNA sugar and the RNA sugar?

4. The backbone is like the fixed structure of an array. Where does that analogy break down?

4 unanswered