Sha256: 391fa92fa037b57dc7ed24d8d7da634848cf890692dc6fb3e999fa1f99da8c33

Contents?: true

Size: 1.34 KB

Versions: 84

Compression:

Stored size: 1.34 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 JavaScript to install the
 necessary dependencies:

http://exercism.io/languages/javascript/installation

## Running the test suite

The provided test suite uses [Jasmine](https://jasmine.github.io/).
You can install it by opening a terminal window and running the
following command:

```sh
npm install -g jasmine
```

Run the test suite from the exercise directory with:

```sh
jasmine rna-transcription.spec.js
```

In many test suites all but the first test have been marked "pending".
Once you get a test passing, activate the next one by changing `xit` to `it`.

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

84 entries across 84 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.138 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.137 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.136 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.135 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.134 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.133 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.132 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.131 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.130 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.129 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.128 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.127 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.126 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.125 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.124 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.123 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.122 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.121 tracks/javascript/exercises/rna-transcription/README.md
trackler-2.2.1.120 tracks/javascript/exercises/rna-transcription/README.md