1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# Copyright 2015 by Kai Blin.
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.
import unittest
import warnings
from os import path
from Bio import SeqIO
class EMBLTests(unittest.TestCase):
def test_embl_content_after_co(self):
"""Test an AssertionError is thrown by content after a CO line"""
def parse_content_after_co():
rec = SeqIO.read(path.join('EMBL', 'xx_after_co.embl'), 'embl')
self.assertRaises(AssertionError, parse_content_after_co)
try:
parse_content_after_co()
except AssertionError as e:
self.assertEqual(str(e), "Unexpected content after SQ or CO line: 'XX'")
else:
self.assertTrue(False, "Error message without explanation raised by content after CO line")
def test_embl_0_line(self):
"""Test SQ line with 0 length sequence"""
# Biopython 1.67 and older would parse this file with a warning:
# 'Expected sequence length 1740, found 1744 (TIR43YW1_CE).' and
# the coordinates 1740 added to the sequence as four extra letters.
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
rec = SeqIO.read(path.join('EMBL', 'embl_with_0_line.embl'), 'embl')
self.assertEqual(len(w), 0, "Unexpected parser warnings: " + "\n".join(str(warn.message) for warn in w))
self.assertEqual(len(rec), 1740)
if __name__ == "__main__":
runner = unittest.TextTestRunner(verbosity=2)
unittest.main(testRunner=runner)
|