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.159 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.158 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.157 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.156 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.155 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.154 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.153 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.152 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.151 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.150 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.149 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.148 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.147 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.146 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.145 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.144 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.143 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.142 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.141 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.140 tracks/julia/exercises/rna-transcription/README.md