Sha256: 843edc33d9bc53d2ea5d006fc4e4aae776d3f896037c55d87899596b52d808f6

Contents?: true

Size: 1.9 KB

Versions: 29

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/installation) 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

29 entries across 29 versions & 1 rubygems

Version Path
trackler-2.2.1.100 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.99 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.98 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.97 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.96 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.95 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.94 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.93 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.92 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.91 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.90 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.89 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.88 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.87 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.86 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.85 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.84 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.83 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.82 tracks/delphi/exercises/rna-transcription/README.md
trackler-2.2.1.81 tracks/delphi/exercises/rna-transcription/README.md