Sha256: 30284e0ce90cbd2a73498adbe7e2b4dc62322af4eb5c3dc8ca7cf36ddb6c4c14

Contents?: true

Size: 1.28 KB

Versions: 54

Compression:

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

## Resources

Remember to check out the Perl 6 [documentation](https://docs.perl6.org/) and
[resources](https://perl6.org/resources/) pages for information, tips, and
examples if you get stuck.

## Running the tests

There is a test script included with the exercise; a file with the extension
`.t`. You can run the test script for the exercise by executing the command
`prove . --exec=perl6` in the exercise directory. You can also add the `-v` flag
e.g. `prove . --exec=perl6 -v` to display all tests, including any optional
tests marked as 'TODO'.

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

54 entries across 54 versions & 1 rubygems

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