We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea5b10d commit 6fa0571Copy full SHA for 6fa0571
1 file changed
src/pyfastani/tests/test_ani.py
@@ -132,6 +132,7 @@ def _load_fasta(self, path):
132
def _get_sequence(self, record):
133
return record.seq
134
135
+ @unittest.skipUnless(os.path.exists(ECOLI), "missing FastANI data files")
136
def test_sketch_pickling(self):
137
"""Check that pickling before indexing produces consistent results.
138
"""
@@ -151,6 +152,7 @@ def test_sketch_pickling(self):
151
152
self.assertEqual(hits[0].fragments, 1608)
153
self.assertAlmostEqual(hits[0].identity, 97.7507, places=4)
154
155
156
def test_mapper_pickling(self):
157
"""Check that pickling after indexing produces consistent results.
158
0 commit comments