Skip to content

Commit

Permalink
Merge pull request #479 from u6052029/Bootstrap_Progress_Display
Browse files Browse the repository at this point in the history
BUG: bootstrap uses old progress display api, fixes #414
  • Loading branch information
GavinHuttley committed Jan 9, 2020
2 parents 63b8c84 + 03e89f4 commit 19e175b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cogent3/evolve/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ def one_model(pc):

# optimisations = pcs * (self._numreplicates + 1)
init_work = pcs / (self._numreplicates + pcs)
ui.display("Original data", 0.0, init_work)
ui.display("Original data", 0.0)
(starting_points, self.observed) = each_model(self.alignment)

ui.display("Randomness", init_work, 0.0)
ui.display("Randomness", init_work)
alignment_random_state = random.Random(self.seed).getstate()

def one_replicate(i):
Expand Down

0 comments on commit 19e175b

Please sign in to comment.