summary refs log tree commit diff stats
path: root/raku/rna-transcription/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'raku/rna-transcription/README.md')
-rw-r--r--raku/rna-transcription/README.md41
1 files changed, 41 insertions, 0 deletions
diff --git a/raku/rna-transcription/README.md b/raku/rna-transcription/README.md
new file mode 100644
index 0000000..154e168
--- /dev/null
+++ b/raku/rna-transcription/README.md
@@ -0,0 +1,41 @@
+# Rna Transcription
+
+Welcome to Rna Transcription on Exercism's Raku Track.
+If you need help running the tests or submitting your code, check out `HELP.md`.
+
+## Instructions
+
+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`
+
+## Source
+
+### Created by
+
+- @dnmfarrell
+
+### Contributed to by
+
+- @kotp
+- @kytrinyx
+- @m-dango
+- @yanick
+
+### Based on
+
+Hyperphysics - http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html
\ No newline at end of file