Skip to content

Commit

Permalink
Fix README for rna-transcription exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
kytrinyx committed Jan 15, 2014
1 parent ad8d18c commit 175c65e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion assignments/shared/rna-transcription.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,10 @@ The four nucleotides found in DNA are adenine (**A**), cytosine (**C**), guanine

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 all occurrences of thymidine with uracil.
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`

2 changes: 1 addition & 1 deletion assignments/shared/rna-transcription.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
blurb: "Write a program that can translate a given DNA string to the transcribed RNA string corresponding to it."
blurb: "Write a program that can translate a given DNA string to the corresponding transcribed RNA string."
source: "Rosalind"
source_url: "http://rosalind.info/problems/rna"

0 comments on commit 175c65e

Please sign in to comment.