Sha256: 35f2a23fa483da610e7a2a71f1c2a8932bb7fb6cc0712f91d4acf59c00d3bb15
Contents?: true
Size: 732 Bytes
Versions: 240
Compression:
Stored size: 732 Bytes
Contents
module RNATranscriptionTest open NUnit.Framework open RNATranscription [<Test>] let ``Rna complement of cytosine is guanine`` () = Assert.That(toRna "C", Is.EqualTo("G")) [<Test>] [<Ignore("Remove to run test")>] let ``Rna complement of guanine is cytosine`` () = Assert.That(toRna "G", Is.EqualTo("C")) [<Test>] [<Ignore("Remove to run test")>] let ``Rna complement of thymine is adenine`` () = Assert.That(toRna "T", Is.EqualTo("A")) [<Test>] [<Ignore("Remove to run test")>] let ``Rna complement of adenine is uracil`` () = Assert.That(toRna "A", Is.EqualTo("U")) [<Test>] [<Ignore("Remove to run test")>] let ``Rna complement`` () = Assert.That(toRna "ACGTGGTCTTAA", Is.EqualTo("UGCACCAGAAUU"))
Version data entries
240 entries across 240 versions & 1 rubygems