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.119 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.118 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.117 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.116 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.115 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.114 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.113 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.111 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.110 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.109 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.108 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.107 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.106 tracks/vimscript/exercises/rna-transcription/README.md
trackler-2.2.1.105 tracks/vimscript/exercises/rna-transcription/README.md