Skip to content

Commit 0d91de6

Browse files
committed
Save state after ancestral step.
1 parent 3588bb6 commit 0d91de6

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

augur/src/H1N1pdm_process.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ def run(self, steps, viruses_per_month=50, raxml_time_limit = 1.0):
145145
if 'ancestral' in steps:
146146
print "--- Infer ancestral sequences " + time.strftime("%H:%M:%S") + " ---"
147147
self.infer_ancestral() # -> every node has a sequence
148+
self.dump()
148149
if 'refine' in steps:
149150
print "--- Tree refine at " + time.strftime("%H:%M:%S") + " ---"
150151
self.refine()

augur/src/H3N2_process.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ def run(self, steps, viruses_per_month=50, raxml_time_limit = 1.0):
260260
if 'ancestral' in steps:
261261
print "--- Infer ancestral sequences " + time.strftime("%H:%M:%S") + " ---"
262262
self.infer_ancestral() # -> every node has a sequence
263+
self.dump()
263264
if 'refine' in steps:
264265
print "--- Tree refine at " + time.strftime("%H:%M:%S") + " ---"
265266
self.refine()

augur/src/Vic_process.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ def run(self, steps, viruses_per_month=50, raxml_time_limit = 1.0):
160160
if 'ancestral' in steps:
161161
print "--- Infer ancestral sequences " + time.strftime("%H:%M:%S") + " ---"
162162
self.infer_ancestral() # -> every node has a sequence
163+
self.dump()
163164
if 'refine' in steps:
164165
print "--- Tree refine at " + time.strftime("%H:%M:%S") + " ---"
165166
self.refine()

augur/src/Yam_process.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ def run(self, steps, viruses_per_month=50, raxml_time_limit = 1.0):
179179
if 'ancestral' in steps:
180180
print "--- Infer ancestral sequences " + time.strftime("%H:%M:%S") + " ---"
181181
self.infer_ancestral() # -> every node has a sequence
182+
self.dump()
182183
if 'refine' in steps:
183184
print "--- Tree refine at " + time.strftime("%H:%M:%S") + " ---"
184185
self.refine()

0 commit comments

Comments
 (0)