Sha256: cbccec7f816ad072fa661b9d3b961639067b9c0dba3909a567e6c542c025c389
Contents?: true
Size: 1.22 KB
Versions: 68
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` ## Setup Go through the setup instructions for PL/SQL to get ready to code: http://exercism.io/languages/plsql ## Running the Tests Execute the tests by calling the `run` method in the respective `ut_<exercise>#` package. The necessary code should be contained at the end of the test package. As an example, the test for the _hamming_ exercise would be run using ``` begin ut_hamming#.run; end; / ``` ## 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
68 entries across 68 versions & 1 rubygems