Sha256: 248a5388e2bdb4c18cebbbcdb556ade0754e10bc360655252c60a923374bcb42

Contents?: true

Size: 1.9 KB

Versions: 57

Compression:

Stored size: 1.9 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`

## Testing

In order to run the tests for this track, you will need to install
DUnitX. Please see the [installation](http://www.exercism.io/languages/delphi/installing) instructions for more information.

### Loading Exercises into Delphi

If Delphi is properly installed, and `*.dpr` file types have been associated with Delphi, then double clicking the supplied `*.dpr` file will start Delphi and load the exercise/project.  `control + F9` is the keyboard shortcut to compile the project or pressing `F9` will compile and run the project.

Alternatively you may opt to start Delphi and load your project via. the `File` drop down menu.

### When Questions Come Up
We monitor the [Pascal-Delphi](https://gitter.im/exercism/Pascal-Delphi) support room on [gitter.im](https://gitter.im) to help you with any questions that might arise.

### Submitting Exercises

Note that, when trying to submit an exercise, make sure the exercise file you're submitting is in the `exercism/delphi/<exerciseName>` directory.

For example, if you're submitting `ubob.pas` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/delphi/bob/ubob.pas`.

## 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

57 entries across 57 versions & 1 rubygems

Version Path
trackler-2.2.1.51 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.50 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.49 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.48 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.47 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.46 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.45 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.44 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.43 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.42 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.41 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.40 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.39 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.38 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.37 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.36 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.35 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.34 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.33 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.32 tracks/delphi/exercises/rna-transcription/README.md