exercism-perl5

Repository for my Perl 5 Exercism exercises
git clone git://git.samirparikh.com/exercism-perl5
Log | Files | Refs | README

README.md (903B) - raw


      1 # Rna Transcription
      2 
      3 Welcome to Rna Transcription on Exercism's Perl 5 Track.
      4 If you need help running the tests or submitting your code, check out `HELP.md`.
      5 
      6 ## Instructions
      7 
      8 Given a DNA strand, return its RNA complement (per RNA transcription).
      9 
     10 Both DNA and RNA strands are a sequence of nucleotides.
     11 
     12 The four nucleotides found in DNA are adenine (**A**), cytosine (**C**),
     13 guanine (**G**) and thymine (**T**).
     14 
     15 The four nucleotides found in RNA are adenine (**A**), cytosine (**C**),
     16 guanine (**G**) and uracil (**U**).
     17 
     18 Given a DNA strand, its transcribed RNA strand is formed by replacing
     19 each nucleotide with its complement:
     20 
     21 * `G` -> `C`
     22 * `C` -> `G`
     23 * `T` -> `A`
     24 * `A` -> `U`
     25 
     26 ## Source
     27 
     28 ### Created by
     29 
     30 - @szabgab
     31 
     32 ### Contributed to by
     33 
     34 - @bistik
     35 - @kytrinyx
     36 - @m-dango
     37 - @rfilipo
     38 - @yanick
     39 
     40 ### Based on
     41 
     42 Hyperphysics - http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html