Skip to content

Commit

Permalink
Merge pull request #271 from galaxyproject/270-run-number
Browse files Browse the repository at this point in the history
Run number
  • Loading branch information
ksuderman authored Jan 19, 2024
2 parents fe6567d + 04763b4 commit 76d15dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions abm/lib/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ def run_on_cloud(cloud: str, config: dict):
continue
for workflow_conf in config['benchmark_confs']:
for n in range(start, end):
history_name_prefix = f"{n+1} {cloud} {conf}"
history_name_prefix = f"{n} {cloud} {conf}"
benchmark.run(
context, workflow_conf, history_name_prefix, config['name']
)
else:
for workflow_conf in config['benchmark_confs']:
for n in range(start, end):
history_name_prefix = f"{n+1} {cloud}"
history_name_prefix = f"{n} {cloud}"
benchmark.run(
context, workflow_conf, history_name_prefix, config['name']
)
Expand Down

0 comments on commit 76d15dc

Please sign in to comment.