Skip to content

Commit 2137036

Browse files
authored
Fix recursive call (#692)
1 parent 6bff4ea commit 2137036

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/cromwell_status_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ async def get_sgid_peid_map_async(datasets: list[str]):
197197
def create_sv_analyses(sg_datasets: dict, sg_analyses: dict):
198198
"""Synchronous entrypoint to create analyses for the given sequencing groups and datasets."""
199199
asyncio.get_event_loop().run_until_complete(
200-
create_sv_analyses(sg_datasets, sg_analyses),
200+
create_sv_analyses_async(sg_datasets, sg_analyses),
201201
)
202202

203203

0 commit comments

Comments
 (0)