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.119 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.118 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.117 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.116 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.115 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.114 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.113 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.111 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.110 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.109 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.108 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.107 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.106 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.105 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.104 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.103 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.102 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.101 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.100 tracks/julia/exercises/rna-transcription/README.md
trackler-2.2.1.99 tracks/julia/exercises/rna-transcription/README.md