Changed FASTA reading to group based on file for merging partial targets

This commit is contained in:
2025-02-14 14:35:53 +00:00
parent 765cf9d418
commit d0318536b2
2 changed files with 8 additions and 7 deletions

View File

@@ -2,6 +2,6 @@ from autobigs.engine.reading import read_fasta
async def test_fasta_reader_not_none():
named_strings = read_fasta("tests/resources/tohama_I_bpertussis.fasta")
async for named_string in named_strings:
named_strings = await read_fasta("tests/resources/tohama_I_bpertussis.fasta")
for named_string in named_strings:
assert named_string.name == "BX470248.1"