2025-01-22 21:05:19 +00:00
|
|
|
from autobigs.engine.data.local.fasta import read_fasta
|
2025-01-08 15:14:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_fasta_reader_not_none():
|
|
|
|
named_strings = read_fasta("tests/resources/tohama_I_bpertussis.fasta")
|
|
|
|
async for named_string in named_strings:
|
|
|
|
assert named_string.name == "BX470248.1"
|