示例#1
0
 def testORFadviser6(self):
     self.assertEqual(hw.ORFadviser("ATGCCCGGGTAA"), 'This is an ORF.')
示例#2
0
 def testORFadviser3(self):
     self.assertEqual(hw.ORFadviser("ATGCCCTAC"),
                      'The last three bases are not a stop codon.')
示例#3
0
 def testORFadviser5(self):
     self.assertEqual(hw.ORFadviser("ATGCCCGGTAA"),
                      'The string is not of the correct length.')
示例#4
0
 def testORFadviser1(self):
     self.assertEqual(hw.ORFadviser("CCC"),
                      'The first three bases are not ATG.')