Sha256: cbccec7f816ad072fa661b9d3b961639067b9c0dba3909a567e6c542c025c389

Contents?: true

Size: 1.22 KB

Versions: 68

Compression:

Stored size: 1.22 KB

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`

## Setup

Go through the setup instructions for PL/SQL to get ready to code:

http://exercism.io/languages/plsql

## Running the Tests

Execute the tests by calling the `run` method in the respective `ut_<exercise>#` package.
The necessary code should be contained at the end of the test package.
As an example, the test for the _hamming_ exercise would be run using

```
begin
  ut_hamming#.run;
end;
/
```

## Source

Hyperphysics [http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html](http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.178 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.177 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.176 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.175 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.174 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.173 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.172 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.171 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.170 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.169 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.167 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.166 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.165 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.164 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.163 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.162 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.161 tracks/plsql/exercises/rna-transcription/README.md
trackler-2.2.1.160 tracks/plsql/exercises/rna-transcription/README.md