Sha256: 8063cf22238081d1a06a8b5a3f218a11b8b1c042bb5a7d5985a87eca6e521236

Contents?: true

Size: 1.18 KB

Versions: 68

Compression:

Stored size: 1.18 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`

* * * *

For installation and learning resources, refer to the [exercism help page][].

[exercism help page]: http://exercism.io/languages/lfe

To run the provided tests, you will need `make`.
Open a terminal window and run the following from the exercise directory:

```sh
make test
```

You should now be able to see the results of the test suite for the exercise.

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

68 entries across 68 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/lfe/exercises/rna-transcription/README.md
trackler-2.2.1.118 tracks/lfe/exercises/rna-transcription/README.md
trackler-2.2.1.117 tracks/lfe/exercises/rna-transcription/README.md
trackler-2.2.1.116 tracks/lfe/exercises/rna-transcription/README.md
trackler-2.2.1.115 tracks/lfe/exercises/rna-transcription/README.md
trackler-2.2.1.114 tracks/lfe/exercises/rna-transcription/README.md
trackler-2.2.1.113 tracks/lfe/exercises/rna-transcription/README.md
trackler-2.2.1.111 tracks/lfe/exercises/rna-transcription/README.md