Skip to content

Commit

Permalink
static text
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimens committed Aug 11, 2024
1 parent 43ac043 commit 18515c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harpy/helperfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def launch_snakemake(sm_args, workflow, starttext, outdir, sm_logfile):
transient=True
) as progress:
# Add a task with a total value of 100 (representing 100%)
task = progress.add_task(workflow.replace("_", " "), total=100)
task = progress.add_task("Processing...", total=100)
# Start a subprocess
process = subprocess.Popen(sm_args.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE, text = True)
err = 0
Expand Down

0 comments on commit 18515c3

Please sign in to comment.