Removed unused parameter for typing

This commit is contained in:
Harrison Deng 2025-02-13 21:56:20 +00:00
parent ca28068477
commit 419aa36e9d
2 changed files with 1 additions and 1 deletions

0
out.csv Normal file
View File

View File

@ -50,7 +50,7 @@ async def run(args: Namespace):
async with BIGSdbIndex() as bigsdb_index: async with BIGSdbIndex() as bigsdb_index:
gen_strings = read_multiple_fastas(args.fastas) gen_strings = read_multiple_fastas(args.fastas)
async with await bigsdb_index.build_profiler_from_seqdefdb(False, args.seqdefdb, args.schema) as mlst_profiler: async with await bigsdb_index.build_profiler_from_seqdefdb(False, args.seqdefdb, args.schema) as mlst_profiler:
mlst_profiles = mlst_profiler.profile_multiple_strings(gen_strings, exact=args.exact) mlst_profiles = mlst_profiler.profile_multiple_strings(gen_strings)
failed = await write_mlst_profiles_as_csv(mlst_profiles, args.out) failed = await write_mlst_profiles_as_csv(mlst_profiles, args.out)
if len(failed) > 0: if len(failed) > 0:
print(f"A total of {len(failed)} IDs failed:\n{"\n".join(failed)}") print(f"A total of {len(failed)} IDs failed:\n{"\n".join(failed)}")