All checks were successful
autoBIGS.engine/pipeline/head This commit looks good
13 lines
509 B
Python
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"
|