Skip to content

Commit

Permalink
Fix typo in filename
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-czyz committed Apr 14, 2024
1 parent f40efc4 commit ff13dfd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions workflows/benchmark/_common_benchmark_rules.smk
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ TASKS_DICT = {

rule benchmark_tables:
input: 'results.csv'
output: 'benchmark.html', 'benchmark_converged_only.html', 'benchmark_convergance.html'
output: 'benchmark.html', 'benchmark_converged_only.html', 'benchmark_convergence.html'
run:
results = utils.read_results(str(input))
table = utils.create_benchmark_table(results, converged_only=False)
Expand All @@ -24,8 +24,8 @@ rule benchmark_tables:
table = utils.create_benchmark_table(results, converged_only=True)
table.to_html('benchmark_converged_only.html')

table = utils.create_convergance_table(results)
table.to_html('benchmark_convergance.html')
table = utils.create_convergence_table(results)
table.to_html('benchmark_convergence.html')


# Gather all results into one CSV file
Expand Down
2 changes: 1 addition & 1 deletion workflows/benchmark/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def make_pretty(styler):
return table_pretty


def create_convergance_table(results, n_samples=None):
def create_convergence_table(results, n_samples=None):
if n_samples is None:
n_samples = results["n_samples"].max()

Expand Down

0 comments on commit ff13dfd

Please sign in to comment.