-
Notifications
You must be signed in to change notification settings - Fork 220
/
inflammation-analysis.py
39 lines (26 loc) · 1.1 KB
/
inflammation-analysis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python3
"""Software for managing and analysing patients' inflammation data in our imaginary hospital."""
import argparse
from inflammation import models, views
def main(args):
"""The MVC Controller of the patient inflammation data system.
The Controller is responsible for:
- selecting the necessary models and views for the current task
- passing data between models and views
"""
InFiles = args.infiles
if not isinstance(InFiles, list):
InFiles = [args.infiles]
for filename in InFiles:
inflammation_data = models.load_csv(filename)
view_data = {'average': models.daily_mean(inflammation_data), 'max': models.daily_max(inflammation_data), 'min': models.daily_min(inflammation_data)}
views.visualize(view_data)
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description='A basic patient inflammation data management system')
parser.add_argument(
'infiles',
nargs='+',
help='Input CSV(s) containing inflammation series for each patient')
args = parser.parse_args()
main(args)