Sha256: 93fbe731ea975a6afdd1f83772925cee3372045355e16c849a80820326c2dae9

Contents?: true

Size: 760 Bytes

Versions: 1896

Compression:

Stored size: 760 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

1,896 entries across 184 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/mips/exercises/rna-transcription/README.md
trackler-2.2.1.180 tracks/pony/exercises/rna-transcription/README.md
trackler-2.2.1.180 tracks/nim/exercises/rna-transcription/README.md
trackler-2.2.1.180 tracks/perl5/exercises/rna-transcription/README.md
trackler-2.2.1.180 tracks/prolog/exercises/rna-transcription/README.md
trackler-2.2.1.180 tracks/purescript/exercises/rna-transcription/README.md
trackler-2.2.1.180 tracks/scheme/exercises/rna-transcription/README.md
trackler-2.2.1.180 tracks/gnu-apl/exercises/rna-transcription/README.md
trackler-2.2.1.180 tracks/fortran/exercises/rna-transcription/README.md
trackler-2.2.1.180 tracks/elisp/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/prolog/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/purescript/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/perl5/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/pony/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/gnu-apl/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/fortran/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/mips/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/nim/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/elisp/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/scheme/exercises/rna-transcription/README.md