Sha256: 2e0d3823fbb9499015db8ab49225f87f18a946d6183e0fcdc5cf7e5ddc20a357

Contents?: true

Size: 1.22 KB

Versions: 74

Compression:

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

The Scala exercises assume an SBT project scheme. The exercise solution source
should be placed within the exercise directory/src/main/scala. The exercise
unit tests can be found within the exercise directory/src/test/scala.

To run the tests simply run the command `sbt test` in the exercise directory.

For more detailed info about the Scala track see the [help
page](http://exercism.io/languages/scala).


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

74 entries across 74 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.178 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.177 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.176 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.175 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.174 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.173 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.172 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.171 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.170 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.169 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.167 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.166 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.165 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.164 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.163 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.162 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.161 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.160 tracks/scala/exercises/rna-transcription/README.md