Skip to content

Commit

Permalink
Fix bug in RUNLOCI causing incorrect obs X pred comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
tkchafin authored Feb 9, 2024
1 parent 86bf85a commit 706697f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autostreamtree/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ def main():
print("Fitting StreamTree distances on per-locus matrices...")
Rlist = list()
ast.block_print()
for gen in genlist:
r = ast.fit_least_squares_distances(gen, inc.astype(int),
for locgen in genlist:
r = ast.fit_least_squares_distances(locgen, inc.astype(int),
params.iterative,
params.out, params.weight)
Rlist.append(r)
Expand Down

0 comments on commit 706697f

Please sign in to comment.