示例#1
0
 def test_equal_2(self):
     self.assertEqual(motif_locator('ACCGTACCAAGGGACC', 'AAT'), [])
示例#2
0
 def test_equal_7(self):
     self.assertEqual(motif_locator('ACGT', 'ACGTGAC'), [])
示例#3
0
 def test_equal_1(self):
     self.assertEqual(motif_locator('ACGTGGGGACTAGGGG', 'GGGG'), [5, 13])
示例#4
0
 def test_equal_5(self):
     self.assertEqual(motif_locator('ACGTTACAACGTTAG', 'ACGT'), [1, 9])
示例#5
0
 def test_equal_6(self):
     self.assertEqual(motif_locator('ACGTACGTACGT', 'AAA'), [])
示例#6
0
 def test_equal_3(self):
     self.assertEqual(motif_locator('GGG', 'GG'), [1, 2])
示例#7
0
 def test_equal_4(self):
     self.assertEqual(motif_locator('TTCCGGAACC', 'CC'), [3, 9])
 def test_equal_1(self):
     self.assertEqual(motif_locator("ACGTGGGGACTAGGGG", "GGGG"), [5, 13])
 def test_equal_2(self):
     self.assertEqual(motif_locator("ACCGTACCAAGGGACC", "AAT"), [])
 def test_equal_7(self):
     self.assertEqual(motif_locator("ACGT", "ACGTGAC"), [])
 def test_equal_6(self):
     self.assertEqual(motif_locator("ACGTACGTACGT", "AAA"), [])
 def test_equal_5(self):
     self.assertEqual(motif_locator("ACGTTACAACGTTAG", "ACGT"), [1, 9])
 def test_equal_4(self):
     self.assertEqual(motif_locator("TTCCGGAACC", "CC"), [3, 9])
 def test_equal_3(self):
     self.assertEqual(motif_locator("GGG", "GG"), [1, 2])