Harrison Deng 481870db97
All checks were successful
autoBIGS.engine/pipeline/head This commit looks good
Updated tests to reflect new fasta read naming
2025-03-13 14:25:44 +00:00

13 lines
509 B
Python

from autobigs.engine.reading import read_fasta
async def test_fasta_reader_not_none():
named_strings = await read_fasta("tests/resources/tohama_I_bpertussis.fasta")
for named_string in named_strings:
assert named_string.name is not None
async def test_fasta_reader_name_contains_file_and_id():
named_strings = await read_fasta("tests/resources/tohama_I_bpertussis.fasta")
for named_string in named_strings:
assert named_string.name == "tohama_I_bpertussis.fasta:BX470248.1"