Sha256: 5c3f66b43dc9b0db79cc98bbe03837d06950ac158d92ab45706dcd8a64dd5a80

Contents?: true

Size: 1.04 KB

Versions: 103

Compression:

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

http://exercism.io/languages/typescript

## Requirements

Install assignment dependencies:

```bash
$ yarn install
```

## Making the test suite pass

Execute the tests with:

```bash
$ yarn test
```



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

103 entries across 103 versions & 1 rubygems

Version Path
trackler-2.2.1.107 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.106 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.105 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.104 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.103 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.102 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.101 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.100 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.99 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.98 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.97 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.96 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.95 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.94 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.93 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.92 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.91 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.90 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.89 tracks/typescript/exercises/rna-transcription/README.md
trackler-2.2.1.88 tracks/typescript/exercises/rna-transcription/README.md