Skip to content

Commit

Permalink
Reference new top-level name in AWS Batch script
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlin committed Apr 19, 2024
1 parent a9ce080 commit f8df5ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
for segment in params.segments:
call = ['nextstrain', 'build', '--aws-batch', '.', '-j 1']
targets = []
targets.append('auspice/flu_avian_%s_%s_tree.json'%(subtype, segment))
targets.append('auspice/flu_avian_%s_%s_meta.json'%(subtype, segment))
targets.append('auspice/avian-flu_%s_%s_tree.json'%(subtype, segment))
targets.append('auspice/avian-flu_%s_%s_meta.json'%(subtype, segment))
call.extend(targets)
print(' '.join(call))
log = open('logs/%s_%s.txt'%(subtype, segment), 'w')
Expand Down

0 comments on commit f8df5ff

Please sign in to comment.