Skip to content

Commit

Permalink
Added a sub_progress to mark files being uploaded
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisgKent committed Jun 6, 2024
1 parent 7914b16 commit 05ef446
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions primalscheme3/scheme/scheme_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,11 @@ def schemecreate(
scheme_pt.manual_update(n=scheme_pt.total)
scheme_pt.close()

# Create the progress tracker for the final steps
upload_pt = pm.create_sub_progress(
iter=[], chrom="ALL", process="Creating / Uploading Files", disable=True
)
upload_pt.manual_update(n=0, total=0, count=0)
logger.info("Writting output files")

# Write primer bed file
Expand Down

0 comments on commit 05ef446

Please sign in to comment.