2025-02-04 16:19:00 +00:00
|
|
|
from autobigs.engine.reading import read_fasta
|
2025-01-08 15:14:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_fasta_reader_not_none():
|
2025-02-14 14:35:53 +00:00
|
|
|
named_strings = await read_fasta("tests/resources/tohama_I_bpertussis.fasta")
|
|
|
|
for named_string in named_strings:
|
2025-01-08 15:14:06 +00:00
|
|
|
assert named_string.name == "BX470248.1"
|