From 1d22c1891f06e7e829fefac93e27419b5654e833 Mon Sep 17 00:00:00 2001 From: Nicholas Hathaway Date: Thu, 4 Jun 2026 18:03:39 -0700 Subject: [PATCH] default in the argparse was still mhap_id but we changed the default to be seq (it's changed to seq in the function itself) --- src/pmotools/scripts/pmo_to_tables/extract_allele_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pmotools/scripts/pmo_to_tables/extract_allele_table.py b/src/pmotools/scripts/pmo_to_tables/extract_allele_table.py index bfd458b..93f8144 100755 --- a/src/pmotools/scripts/pmo_to_tables/extract_allele_table.py +++ b/src/pmotools/scripts/pmo_to_tables/extract_allele_table.py @@ -91,7 +91,7 @@ def get_parser() -> argparse.ArgumentParser: "--default_base_col_names", type=str, required=False, - default="library_sample_name,target_name,mhap_id", + default="library_sample_name,target_name,seq", help="default base column names, must be length 3", ) return parser