Sha256: 7223193555ae597fffeca530113ba6bdf8904d15ec4e2fabbe8dadb38e9234cb
Contents?: true
Size: 783 Bytes
Versions: 38
Compression:
Stored size: 783 Bytes
Contents
// This file was auto-generated based on version 1.2.0 of the canonical data. module RnaTranscriptionTest open FsUnit.Xunit open Xunit open RnaTranscription [<Fact>] let ``RNA complement of cytosine is guanine`` () = toRna "C" |> should equal (Some "G") [<Fact(Skip = "Remove to run test")>] let ``RNA complement of guanine is cytosine`` () = toRna "G" |> should equal (Some "C") [<Fact(Skip = "Remove to run test")>] let ``RNA complement of thymine is adenine`` () = toRna "T" |> should equal (Some "A") [<Fact(Skip = "Remove to run test")>] let ``RNA complement of adenine is uracil`` () = toRna "A" |> should equal (Some "U") [<Fact(Skip = "Remove to run test")>] let ``RNA complement`` () = toRna "ACGTGGTCTTAA" |> should equal (Some "UGCACCAGAAUU")
Version data entries
38 entries across 38 versions & 1 rubygems