Skip to content

Latest commit

 

History

History

rna-transcription

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

RNA Transcription

Welcome to RNA Transcription on Exercism's Python Track. If you need help running the tests or submitting your code, check out HELP.md.

Instructions

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

Source

Created by

  • @BrianHicks

Contributed to by

  • @behrtam
  • @cmccandless
  • @davepeake
  • @Dog
  • @dvermd
  • @hariesramdhani
  • @ikhadykin
  • @jamesmcm
  • @kytrinyx
  • @lowks
  • @magnus-hogberg
  • @N-Parsons
  • @pheanex
  • @sjakobi
  • @thomasjpfan
  • @tqa236
  • @yawpitch

Based on

Hyperphysics - https://web.archive.org/web/20220408112140/http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html