Exemplo n.º 1
0
 def test_validates_nucleotides(self):
     with self.assertRaises(ValueError):
         count("GACT", 'X')
Exemplo n.º 2
0
 def test_counts_only_thymidine(self):
     self.assertEqual(1, count('GGGGGTAACCCGG', 'T'))
Exemplo n.º 3
0
 def test_dna_has_no_uracil(self):
     self.assertEqual(0, count('GATTACA', 'U'))
Exemplo n.º 4
0
 def test_empty_dna_string_has_no_adenosine(self):
     self.assertEqual(0, count('', 'A'))
Exemplo n.º 5
0
 def test_repetitive_cytidine_gets_counted(self):
     self.assertEqual(5, count('CCCCC', 'C'))
Exemplo n.º 6
0
 def test_validates_nucleotides(self):
     with self.assertRaises(ValueError):
         count("GACT", 'X')
Exemplo n.º 7
0
 def test_counts_only_thymidine(self):
     self.assertEqual(1, count('GGGGGTAACCCGG', 'T'))
Exemplo n.º 8
0
 def test_repetitive_cytidine_gets_counted(self):
     self.assertEqual(5, count('CCCCC', 'C'))
Exemplo n.º 9
0
 def test_empty_dna_string_has_no_adenosine(self):
     self.assertEqual(0, count('', 'A'))
Exemplo n.º 10
0
 def test_counting_nucs(self):
     self.assertEqual((20, 12, 17, 21), dna.count('AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC'))