Sha256: 896ec6ec20fd0841eaab2a65a93641e8ced6b37a640fc784581be9b793cec462

Contents?: true

Size: 761 Bytes

Versions: 169

Compression:

Stored size: 761 Bytes

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`
## 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

169 entries across 169 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.178 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.177 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.176 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.175 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.174 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.173 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.172 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.171 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.170 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.169 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.167 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.166 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.165 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.164 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.163 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.162 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.161 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.160 tracks/julia/exercises/rna-transcription/README.md