Question
C++ The genetic information encoded in a strand of deoxyribonucleic acid (DNA) is stored in the purine and pyrimidine bases (adenine, guanine, cytosine, and thymine)
C++
The genetic information encoded in a strand of deoxyribonucleic acid (DNA) is stored in the purine and pyrimidine bases (adenine, guanine, cytosine, and thymine) that form the strand. Biologists are keenly interested in the bases in a DNA sequence because these bases determine what the sequence does.
By convention, DNA sequences are represented using lists containing the letters A, G, C, and T (for adenine, guanine, cytosine, and thymine, respectively). Your program will prompt the user to enter a DNA sequence. Your C++ program will compute the number of times a base occurs in the DNA sequence. An example run of your program would look like this:
Enter a DNA sequence:
AGTACATGTA
Adenine count - 4
Cytosine count - 1
Thymine count - 3
Guanine count - 2
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started