Skip to content

Commit

Permalink
Save state after ancestral step.
Browse files Browse the repository at this point in the history
  • Loading branch information
trvrb committed Jun 17, 2015
1 parent 3588bb6 commit 0d91de6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions augur/src/H1N1pdm_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ def run(self, steps, viruses_per_month=50, raxml_time_limit = 1.0):
if 'ancestral' in steps:
print "--- Infer ancestral sequences " + time.strftime("%H:%M:%S") + " ---"
self.infer_ancestral() # -> every node has a sequence
self.dump()
if 'refine' in steps:
print "--- Tree refine at " + time.strftime("%H:%M:%S") + " ---"
self.refine()
Expand Down
1 change: 1 addition & 0 deletions augur/src/H3N2_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def run(self, steps, viruses_per_month=50, raxml_time_limit = 1.0):
if 'ancestral' in steps:
print "--- Infer ancestral sequences " + time.strftime("%H:%M:%S") + " ---"
self.infer_ancestral() # -> every node has a sequence
self.dump()
if 'refine' in steps:
print "--- Tree refine at " + time.strftime("%H:%M:%S") + " ---"
self.refine()
Expand Down
1 change: 1 addition & 0 deletions augur/src/Vic_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ def run(self, steps, viruses_per_month=50, raxml_time_limit = 1.0):
if 'ancestral' in steps:
print "--- Infer ancestral sequences " + time.strftime("%H:%M:%S") + " ---"
self.infer_ancestral() # -> every node has a sequence
self.dump()
if 'refine' in steps:
print "--- Tree refine at " + time.strftime("%H:%M:%S") + " ---"
self.refine()
Expand Down
1 change: 1 addition & 0 deletions augur/src/Yam_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ def run(self, steps, viruses_per_month=50, raxml_time_limit = 1.0):
if 'ancestral' in steps:
print "--- Infer ancestral sequences " + time.strftime("%H:%M:%S") + " ---"
self.infer_ancestral() # -> every node has a sequence
self.dump()
if 'refine' in steps:
print "--- Tree refine at " + time.strftime("%H:%M:%S") + " ---"
self.refine()
Expand Down

0 comments on commit 0d91de6

Please sign in to comment.