Moved ABIF code to separate project

This commit is contained in:
2025-01-17 14:27:25 +00:00
parent a3c864b565
commit 7ea7ead46a
4 changed files with 1 additions and 123 deletions

View File

@@ -1,4 +1,4 @@
from automlst.engine.local.fasta import read_fasta
from automlst.engine.data.local.fasta import read_fasta
async def test_fasta_reader_not_none():

View File

@@ -1,8 +0,0 @@
import os
from automlst.engine.data.local.abif import read_abif
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")
assert result_data is not None