Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data-pipeline/src/data_pipeline/datasets/clinvar.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down