Sha256: cd2b46cd0904e88d2ffcbc9a06273887df49eed58f78d8c3e80db58d151c48a6

Contents?: true

Size: 1.04 KB

Versions: 74

Compression:

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

# How to run the tests

If you don't know how to run Vader tests, see:
[Tests](http://exercism.io/languages/vimscript/tests).

For general information about the Vim script track, see:
[Help](http://exercism.io/languages/vimscript).

## 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.139 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.138 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.137 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.136 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.135 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.134 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.133 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.132 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.131 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.130 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.129 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.128 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.127 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.126 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.125 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.124 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.123 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.122 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.121 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.120 tracks/vimscript/exercises/rna-transcription/README.md