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.139 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.138 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.137 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.136 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.135 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.134 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.133 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.132 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.131 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.130 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.129 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.128 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.127 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.126 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.125 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.124 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.123 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.122 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.121 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.120 tracks/julia/exercises/rna-transcription/README.md