Skip to content

Commit

Permalink
Issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
rambaut authored Feb 11, 2021
1 parent 7c9c44f commit 73d73a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions polecat/scripts/render_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def make_summary_data(metadata):
with open(metadata, "r") as f:
reader = csv.DictReader(f)
for row in reader:
cluster_dict = {"cluster_no":row["node_number"],
cluster_dict = {"cluster_no":row["node_id"],
"most_recent_tip": row["most_recent_tip"],
"tip_count": row["tip_count"],
"admin0_count":row["admin0_count"],
Expand Down Expand Up @@ -62,7 +62,7 @@ def make_cluster_data(metadata,include_stats,tree_dir):

table_no += 1

cluster_no = row["node_number"]
cluster_no = row["node_id"]

stats = []
for stat in include_stats:
Expand Down

0 comments on commit 73d73a1

Please sign in to comment.