Sha256: 9f32191464b197092b6988fdb537c8ad787472188fa6e85c4a2c786f966c1aba

Contents?: true

Size: 1.35 KB

Versions: 53

Compression:

Stored size: 1.35 KB

Contents

# Nucleotide Count

Given a DNA string, compute how many times each nucleotide occurs in the string.

DNA is represented by an alphabet of the following symbols: 'A', 'C',
'G', and 'T'.

Each symbol represents a nucleotide, which is a fancy name for the
particular molecules that happen to make up a large part of DNA.

Shortest intro to biochemistry EVAR:

- twigs are to birds nests as
- nucleotides are to DNA and RNA as
- amino acids are to proteins as
- sugar is to starch as
- oh crap lipids

I'm not going to talk about lipids because they're crazy complex.

So back to nucleotides.

DNA contains four types of them: adenine (`A`), cytosine (`C`), guanine
(`G`), and thymine (`T`).

RNA contains a slightly different set of nucleotides, but we don't care
about that for now.

## Running the tests

To run the tests, run the command `busted .` from within the exercise directory.

## Further information

For more detailed information about the Lua track, including how to get help if
you're having trouble, please visit the exercism.io [Lua language page](http://exercism.io/languages/lua/about).

## 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

53 entries across 53 versions & 1 rubygems

Version Path
trackler-2.2.1.7 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.1.6 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.1.5 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.1.4 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.1.3 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.1.2 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.1.1 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.1.0 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.0.6 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.0.5 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.0.4 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.0.3 tracks/lua/exercises/nucleotide-count/README.md
trackler-2.2.0.2 tracks/lua/exercises/nucleotide-count/README.md