Skip to content

Commit

Permalink
temporarily disable public health lab data
Browse files Browse the repository at this point in the history
  • Loading branch information
undefx committed Oct 10, 2018
1 parent f3aa5c0 commit 5a17eaa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/acquisition/fluview/fluview_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,13 +515,15 @@ def main():
if args.file:
update_from_file(args.issue, date, args.file, test_mode=args.test)
update_from_file_clinical(args.issue, date, args.file, test_mode=args.test)
update_from_file_public(args.issue, date, args.file, test_mode=args.test)
# TODO: header row has changed for public health lab data
# update_from_file_public(args.issue, date, args.file, test_mode=args.test)
else:
issue, files = fluview.save_latest(path='flu_data')
for filename in files:
update_from_file(issue, date, filename, test_mode=args.test)
update_from_file_clinical(issue, date, filename, test_mode=args.test)
update_from_file_public(issue, date, filename, test_mode=args.test)
# TODO: header row has changed for public health lab data
# update_from_file_public(issue, date, filename, test_mode=args.test)

if __name__ == '__main__':
main()

0 comments on commit 5a17eaa

Please sign in to comment.