Added original filename to csv output
Some checks reported errors
autoBIGS.engine/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
Harrison Deng 2025-03-13 14:17:08 +00:00
parent 3074997db6
commit 62fdada9c1

View File

@ -1,5 +1,6 @@
import asyncio import asyncio
from io import TextIOWrapper from io import TextIOWrapper
from os import path
from typing import Any, AsyncGenerator, Iterable, Union from typing import Any, AsyncGenerator, Iterable, Union
from Bio import SeqIO from Bio import SeqIO
@ -9,7 +10,7 @@ async def read_fasta(handle: Union[str, TextIOWrapper]) -> Iterable[NamedString]
fasta_sequences = asyncio.to_thread(SeqIO.parse, handle=handle, format="fasta") fasta_sequences = asyncio.to_thread(SeqIO.parse, handle=handle, format="fasta")
results = [] results = []
for fasta_sequence in await fasta_sequences: for fasta_sequence in await fasta_sequences:
results.append(NamedString(fasta_sequence.id, str(fasta_sequence.seq))) results.append(NamedString("{0}:{1}".format(path.basename(handle.name if isinstance(handle, TextIOWrapper) else handle), fasta_sequence.id), str(fasta_sequence.seq)))
return results return results
async def read_multiple_fastas(handles: Iterable[Union[str, TextIOWrapper]]) -> AsyncGenerator[Iterable[NamedString], Any]: async def read_multiple_fastas(handles: Iterable[Union[str, TextIOWrapper]]) -> AsyncGenerator[Iterable[NamedString], Any]: