Sha256: 736045a536bd766773042ac8765634e728165696522b88aed3d6c49e470b1ef8

Contents?: true

Size: 1.06 KB

Versions: 56

Compression:

Stored size: 1.06 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

Rosalind [http://rosalind.info/problems/rna](http://rosalind.info/problems/rna)

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

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
trackler-2.2.1.10 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.9 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.8 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.7 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.6 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.5 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.4 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.3 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.2 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.1 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.1.0 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.0.6 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.0.5 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.0.4 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.0.3 tracks/lua/exercises/rna-transcription/README.md
trackler-2.2.0.2 tracks/lua/exercises/rna-transcription/README.md