mirror of
https://github.com/biopython/biopython.git
synced 2025-10-20 21:53:47 +08:00
31 lines
968 B
Python
31 lines
968 B
Python
# Copyright 2012 by Wibowo Arindrarto. All rights reserved.
|
|
# 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.
|
|
|
|
"""Tests for SearchIO exonerate-vulgar indexing."""
|
|
|
|
import os
|
|
import unittest
|
|
|
|
from search_tests_common import CheckIndex
|
|
|
|
|
|
class ExonerateVulgarIndexCases(CheckIndex):
|
|
fmt = "exonerate-vulgar"
|
|
|
|
def test_exn_22_m_est2genome(self):
|
|
"""Test exonerate-vulgar indexing, single."""
|
|
filename = os.path.join("Exonerate", "exn_22_o_vulgar.exn")
|
|
self.check_index(filename, self.fmt)
|
|
|
|
def test_exn_22_q_multiple(self):
|
|
"""Test exonerate-vulgar indexing, single."""
|
|
filename = os.path.join("Exonerate", "exn_22_q_multiple_vulgar.exn")
|
|
self.check_index(filename, self.fmt)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
runner = unittest.TextTestRunner(verbosity=2)
|
|
unittest.main(testRunner=runner)
|