From 5d41146e6a7b75f30ee17e0056485b459d34ed8d Mon Sep 17 00:00:00 2001 From: "Laura Luebbert, Ph.D." <56094636+lauraluebbert@users.noreply.github.com> Date: Thu, 6 Feb 2025 18:29:57 -0500 Subject: [PATCH] re-add --no-progressbar --- gget/gget_ncbi_virus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gget/gget_ncbi_virus.py b/gget/gget_ncbi_virus.py index cee80efe..42a5b576 100644 --- a/gget/gget_ncbi_virus.py +++ b/gget/gget_ncbi_virus.py @@ -90,9 +90,9 @@ def run_datasets( ) else: if accession: - command = f"{datasets_path} download virus genome accession '{virus}'" + command = f"{datasets_path} download virus genome accession '{virus}' --no-progressbar" else: - command = f"{datasets_path} download virus genome taxon '{virus}'" + command = f"{datasets_path} download virus genome taxon '{virus}' --no-progressbar" # Loop through the dictionary and construct the command for key, value in args_dict.items():