diff --git a/PanACoTA/annotate_module/general_format_functions.py b/PanACoTA/annotate_module/general_format_functions.py index 1a1e30ce50e9c203fb3f6bcf9ef80e74f8f38966..0532b0a56cadd5375353323327bf885a8b35a64b 100644 --- a/PanACoTA/annotate_module/general_format_functions.py +++ b/PanACoTA/annotate_module/general_format_functions.py @@ -119,7 +119,7 @@ def format_genomes(genomes_ok, res_path, annot_path, prodigal_only, threads=1, q progressbar.Bar(marker='█', left='', right=''), ' ', progressbar.Counter(), "/{}".format(nbgen), ' (', progressbar.Percentage(), ") - ", progressbar.Timer()] - bar = progressbar.ProgressBar(widgets=widgets, max_value=nbgen, term_width=100).start() + bar = progressbar.ProgressBar(widgets=widgets, max_value=nbgen, term_width=79).start() # Create a Queue to put logs from processes, and handle them after from a single thread m = multiprocessing.Manager() q = m.Queue() diff --git a/PanACoTA/annotate_module/genome_seq_functions.py b/PanACoTA/annotate_module/genome_seq_functions.py index dbb8a2b3a006bd9f78e29e65fd1b0accd95757a1..269f660251a727206e9baf50475fa08b86c661d6 100755 --- a/PanACoTA/annotate_module/genome_seq_functions.py +++ b/PanACoTA/annotate_module/genome_seq_functions.py @@ -101,7 +101,7 @@ def analyse_all_genomes(genomes, dbpath, tmp_path, nbn, soft, logger, quiet=Fals progressbar.Percentage(), ') - ', progressbar.Timer(), ' - ', progressbar.ETA() ] - bar = progressbar.ProgressBar(widgets=widgets, max_value=nbgen, term_width=100).start() + bar = progressbar.ProgressBar(widgets=widgets, max_value=nbgen, term_width=79).start() curnum = 1 toremove = [] # Analyse genomes 1 by 1