Sha256: 234cfe7df4371b22e6cbece8f0e76c59ce0993bbcb93f7b80d5d03948896f2d7

Contents?: true

Size: 1.83 KB

Versions: 46

Compression:

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


## Getting Started

For installation and learning resources, refer to the
[exercism help page](http://exercism.io/languages/haskell).

## Running the tests

To run the test suite, execute the following command:

```bash
stack test
```

#### If you get an error message like this...

```
No .cabal file found in directory
```

You are probably running an old stack version and need
to upgrade it.

#### Otherwise, if you get an error message like this...

```
No compiler found, expected minor version match with...
Try running "stack setup" to install the correct GHC...
```

Just do as it says and it will download and install
the correct compiler version:

```bash
stack setup
```

## Running *GHCi*

If you want to play with your solution in GHCi, just run the command:

```bash
stack ghci
```

## Feedback, Issues, Pull Requests

The [exercism/haskell](https://github.com/exercism/haskell) repository on
GitHub is the home for all of the Haskell exercises.

If you have feedback about an exercise, or want to help implementing a new
one, head over there and create an issue.  We'll do our best to help you!

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

46 entries across 46 versions & 1 rubygems

Version Path
trackler-2.2.1.40 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.39 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.38 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.37 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.36 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.35 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.34 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.33 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.32 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.31 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.30 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.29 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.28 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.27 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.26 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.25 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.24 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.23 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.22 tracks/haskell/exercises/rna-transcription/README.md
trackler-2.2.1.21 tracks/haskell/exercises/rna-transcription/README.md