Sha256: 7acb77dc43ce4f6c790e622a79b45f98787442c7f716d126298c80cf4c8d17b6
Contents?: true
Size: 1.1 KB
Versions: 167
Compression:
Stored size: 1.1 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` For installation and learning resources, refer to the [exercism help page](http://exercism.io/languages/groovy). Run the tests by executing the test script. ``` $ groovy ./RnaTranscriptionSpec.groovy ``` After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests. When all tests pass, congratulations! ## Source Rosalind [http://rosalind.info/problems/rna](http://rosalind.info/problems/rna) ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
167 entries across 167 versions & 1 rubygems