Sha256: f66c431fd529f737d40486d4bb0a2434f04c3790bfd1b45dd7b1283c27ca55db
Contents?: true
Size: 1.04 KB
Versions: 92
Compression:
Stored size: 1.04 KB
Contents
# Nucleotide Count Given a single stranded DNA string, compute how many times each nucleotide occurs in the string. The genetic language of every living thing on the planet is DNA. DNA is a large molecule that is built from an extremely long sequence of individual elements called nucleotides. 4 types exist in DNA and these differ only slightly and can be represented as the following symbols: 'A' for adenine, 'C' for cytosine, 'G' for guanine, and 'T' thymine. Here is an analogy: - twigs are to birds nests as - nucleotides are to DNA as - legos are to lego houses as - words are to sentences as... Run the tests with: ```bash bats nucleotide_count_test.sh ``` After the first test(s) pass, continue by commenting out or removing the `skip` annotations prepending other tests. ## Source The Calculating DNA Nucleotides_problem at Rosalind [http://rosalind.info/problems/dna/](http://rosalind.info/problems/dna/) ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
92 entries across 92 versions & 1 rubygems