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.98 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.97 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.96 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.95 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.94 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.93 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.92 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.91 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.90 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.89 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.88 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.87 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.86 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.85 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.84 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.83 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.82 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.81 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.80 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.79 tracks/julia/exercises/rna-transcription/README.md