Sha256: ca7f3c182340bc498e2a06f2ad838db07ae8266bf05841de49d72107dde062ec

Contents?: true

Size: 764 Bytes

Versions: 129

Compression:

Stored size: 764 Bytes

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`



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

129 entries across 129 versions & 1 rubygems

Version Path
trackler-2.2.1.58 tracks/kotlin/exercises/rna-transcription/README.md
trackler-2.2.1.57 tracks/kotlin/exercises/rna-transcription/README.md
trackler-2.2.1.56 tracks/kotlin/exercises/rna-transcription/README.md
trackler-2.2.1.55 tracks/kotlin/exercises/rna-transcription/README.md
trackler-2.2.1.54 tracks/kotlin/exercises/rna-transcription/README.md
trackler-2.2.1.53 tracks/kotlin/exercises/rna-transcription/README.md
trackler-2.2.1.52 tracks/kotlin/exercises/rna-transcription/README.md
trackler-2.2.1.51 tracks/kotlin/exercises/rna-transcription/README.md
trackler-2.2.1.50 tracks/kotlin/exercises/rna-transcription/README.md