2025-01-08 15:14:06 +00:00
|
|
|
import os
|
|
|
|
|
2025-01-16 21:54:52 +00:00
|
|
|
from automlst.engine.data.local.abif import read_abif
|
2025-01-08 15:14:06 +00:00
|
|
|
|
|
|
|
async def test_load_sanger_sequence_has_data():
|
|
|
|
assert os.path.exists("tests/resources/1I1_F_P1815443_047.ab1")
|
|
|
|
result_data = await read_abif("tests/resources/1I1_F_P1815443_047.ab1")
|
2025-01-08 21:32:10 +00:00
|
|
|
assert result_data is not None
|