From 8665d0c7775967f9b32c9dda77c199efe929b972 Mon Sep 17 00:00:00 2001 From: Vincent Janvid Date: Thu, 20 Feb 2025 14:21:14 +0100 Subject: [PATCH] Correct flags --- cg/apps/scout/scoutapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cg/apps/scout/scoutapi.py b/cg/apps/scout/scoutapi.py index cb56b94cde..a4a1315904 100644 --- a/cg/apps/scout/scoutapi.py +++ b/cg/apps/scout/scoutapi.py @@ -317,10 +317,10 @@ def upload_rna_fraser_outrider( cust_id, ] if fraser_file_path: - upload_command.extend(["--rna-fraser", fraser_file_path]) + upload_command.extend(["--fraser", fraser_file_path]) if outrider_file_path: - upload_command.extend(["--rna-outrider", outrider_file_path]) + upload_command.extend(["--outrider", outrider_file_path]) try: LOG.info( f"Uploading rna fraser file {fraser_file_path} and outrider file {outrider_file_path} to case {case_id} with command {upload_command}"