From f1245c7740acdf294f3fa75a624a6c066bc14e7c Mon Sep 17 00:00:00 2001 From: Riley Grant Date: Fri, 19 Sep 2025 16:04:12 -0500 Subject: [PATCH] chore(pipelines): update ClinVar variants estimate --- data-pipeline/src/data_pipeline/datasets/clinvar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-pipeline/src/data_pipeline/datasets/clinvar.py b/data-pipeline/src/data_pipeline/datasets/clinvar.py index 9505c4d63..be4f4a3f7 100644 --- a/data-pipeline/src/data_pipeline/datasets/clinvar.py +++ b/data-pipeline/src/data_pipeline/datasets/clinvar.py @@ -202,7 +202,7 @@ def parse_clinvar_xml_to_tsv( with open_function(input_xml_path, "r") as xml_file: # The exact number of variants in the XML file is unknown. # Approximate it to show a progress bar. - progress = tqdm(total=3_100_000, mininterval=5) + progress = tqdm(total=3_750_000, mininterval=5) xml = ElementTree.iterparse(xml_file, events=["end"]) for _, element in xml: if element.tag == "ClinVarVariationRelease":