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.159 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.158 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.157 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.156 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.155 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.154 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.153 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.152 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.151 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.150 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.149 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.148 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.147 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.146 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.145 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.144 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.143 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.142 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.141 tracks/scala/exercises/rna-transcription/README.md
trackler-2.2.1.140 tracks/scala/exercises/rna-transcription/README.md