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