Sha256: 640496d4c0f82adbbc228970e9eb87ed6c0923fe1944d2e1e9e9e81824d5c4e2

Contents?: true

Size: 1.13 KB

Versions: 63

Compression:

Stored size: 1.13 KB

Contents

# RNA Transcription

Given a DNA strand, return its RNA complement (per RNA transcription).

Both DNA and RNA strands are a sequence of nucleotides.

The four nucleotides found in DNA are adenine (**A**), cytosine (**C**),
guanine (**G**) and thymine (**T**).

The four nucleotides found in RNA are adenine (**A**), cytosine (**C**),
guanine (**G**) and uracil (**U**).

Given a DNA strand, its transcribed RNA strand is formed by replacing
each nucleotide with its complement:

* `G` -> `C`
* `C` -> `G`
* `T` -> `A`
* `A` -> `U`

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

Hyperphysics [http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html](http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

63 entries across 63 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.138 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.137 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.136 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.135 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.134 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.133 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.132 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.131 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.130 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.129 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.128 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.127 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.126 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.125 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.124 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.123 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.122 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.121 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.120 tracks/lua/exercises/rna-transcription/README.md