-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfhir_patient_query.py
686 lines (525 loc) · 22.1 KB
/
fhir_patient_query.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
#!/usr/bin/env python3
"""
OVERVIEW:
This is a command-line tool for building a FHIR query URL, submitting it to
a FHIR server, and returning patient_ids and timestamps from all resources
satisfying the query.
The supported resources are 'Condition', 'Observation', and 'Procedure',
which must be specified with the --resource_type argument.
The base URL of the FHIR server is specified with the --base_url argument.
Users can restrict the dates of the returned resources with the --start_date
and --end_date arguments. The date range is interpreted as closed on the left
side, i.e. [start_date, end_date), or start_date <= timestamp < end_date.
The supported date formats are:
YYYY
YYYY-MM
YYYY-MM-DD
If these date params are not specified, all matching data is returned.
A comma-separated list of codes can be provided with the --code_list argument.
DO NOT insert a space after the commas, or the python command-line parser will
misinterpret the list of codes. This is what a proper list of codes looks like:
1234567,2345678,22114453
A more extensive list of codes (including codes from different codesystems) can
be provided with the --code_file argument. The code_file is a CSV-formatted
array of codesystem URLs and codes. An example using both LOINC and SNOMED
codes is as follows:
codesystem,codelist
http://loinc.org,26464-8,804-5,6690-2,49498-9
http://snomed.info/sct,271737000,40172005
If the FHIR server requires an access token for authentication, the token can
be provided on the command line with the optional --token argument. The
authentication type is assumed to be 'Bearer'.
Extensive debugging info can be displayed with the --debug flag.
Version information is available with the --version argument.
Use the --help argument to display the command-line help.
OUTPUT:
The patient IDs and associated start/end timestamps from the returned resources
are written to a CSV file called 'out.csv', unless the --output_file argument
is used to specify the output filename.
EXAMPLES:
Here are some examples using a public FHIR server. The command-line arguments
have been listed on different lines for clarity. The --debug option has also
been used, so that the actual data returned will be sent to stdout.
1. Find all patients on this FHIR server who have had a colonoscopy procedure.
(The SNOMED code for a colonoscopy procedure is 73761001).
python3 ./fhir_patient_query.py --base_url http://hapi.fhir.org/baseDstu2
--resource_type Procedure
--code_list 73761001
--debug
<results written to out.csv>
2. Find all patients on this FHIR server who have had a colonoscopy procedure
during the first six months of 2015:
python3 ./fhir_patient_query.py --base_url http://hapi.fhir.org/baseDstu2
--resource_type Procedure
--code_list 73761001
--start_date 2015-01-01
--end_date 2015-07-01
--debug
<results written to out.csv>
3. Find all patients on this FHIR server with WBC observations prior to
January 2017 (LOINC codes are used in this example):
python3 ./fhir_patient_query.py --base_url http://hapi.fhir.org/baseDstu2
--resource_type Observation
--code_list 26464-8,804-5,6690-2,49498-9
--end_date 2017-01-01
--debug
<results written to out.csv>
4. Find all patients on this FHIR server who have had any procedures whose
codes are listed in the file 'codes.csv'. The procedure dates should
occur on or after October 2016. Write results to the file query_results.csv.
python3 ./fhir_patient_query.py --base_url http://hapi.fhir.org/baseDstu2
--resource_type Procedure
--code_file codes.csv
--start_date 2016-10-01
--output_file query_results.csv
--debug
<results written to query_results.csv>
5. Find all patients on this FHIR server who have diabetes.
(The SNOMED code for diabetes is 73211009).
python3 ./fhir_patient_query.py --base_url http://hapi.fhir.org/baseDstu2
--resource_type Condition
--code_list 73211009
--debug
<results written to out.csv>
"""
import re
import os
import csv
import sys
import json
import argparse
import requests
from collections import namedtuple
# result of a query for an individual patient
_PatientQueryResult = namedtuple('_PatientQueryResult', [
'patient_id', 'datetime_start', 'datetime_end'
])
_VERSION_MAJOR = 0
_VERSION_MINOR = 3
_MODULE_NAME = 'fhir_patient_query.py'
# set to True to enable debug output
_TRACE = False
_EMPTY_STRING = ''
###############################################################################
def _enable_debug():
global _TRACE
_TRACE = True
###############################################################################
def _to_fhir_resource(resource_type):
"""
Convert a resource type string in any case to a properly-cased FHIR
resource type string.
"""
assert resource_type is not None
rt = resource_type.lower()
result = None
if 'condition' == rt:
result = 'Condition'
elif 'observation' == rt:
result = 'Observation'
elif 'procedure' == rt:
result = 'Procedure'
return result
###############################################################################
def _load_code_file(code_file):
"""
Load a CSV file of coding info. Each row of the file should contain the
codesystem URL as the first element followed by a list of codes.
Here is an example that includes a header row:
codesystem,codelist
http://loinc.org,26464-8,804-5,6690-2,49498-9
http://snomed.info/sct,271737000,40172005
This function returns an empty list if the file cannot be read.
"""
lineno = -1
coding_list = []
with open(code_file, 'rt') as infile:
csv_reader = csv.reader(infile, delimiter=',')
for item in csv_reader:
lineno += 1
if 0 == lineno:
continue
assert len(item) >= 2
codesys = item[0]
code_list = item[1:]
coding_list.append( (codesys, code_list) )
return coding_list
###############################################################################
def _build_code_string(coding_list):
"""
Convert a coding list extracted from the coding file to the 'code' portion
of a FHIR search query. Each code is prefixed with the codesystem, which
must be supplied in the code_file.
"""
substrings = []
for codesys,code_list in coding_list:
codes = [c.strip('\"\'') for c in code_list]
for code in codes:
substr = '{0}|{1}'.format(codesys, code)
substrings.append(substr)
joined = ','.join(substrings)
result = 'code=' + joined
return result
###############################################################################
def build_query_url(base_url,
resource_type,
str_code_list=None,
str_code_file=None,
start_date=None,
end_date=None):
"""
Construct the FHIR query from the provided args.
"""
# must have either a code_file or a list of codes
if str_code_list is None and str_code_file is None:
print('{0}: Either a code_list or a code_file must be provided.'.
format(_MODULE_NAME))
return _EMPTY_STRING
# cannot have both
if str_code_list is not None and str_code_file is not None:
print('{0}: The code_list and code_file args cannot both be present.'.
format(_MODULE_NAME))
return _EMPTY_STRING
assert str_code_list is not None or str_code_file is not None
query_url = _EMPTY_STRING
# get the desired FHIR resource, properly capitalized
fhir_resource = _to_fhir_resource(resource_type)
if fhir_resource is None:
print('Unsupported resource type: "{0}"'.format(resource_type))
return query_url
if str_code_list is not None:
code_list = str_code_list.split(',')
code_list = [c.strip('\"\'') for c in code_list]
joined = ','.join(code_list)
code_str = 'code=' + joined
if str_code_file is not None:
# load the code info from the code_file
if not os.path.exists(str_code_file):
print('File not found: "{0}"'.format(str_code_file))
return query_url
coding_list = _load_code_file(str_code_file)
if 0 == len(coding_list):
print('No codes were found in the code_file "{0}"'.format(str_code_file))
return query_url
# build the code portion of the query URL
code_str = _build_code_string(coding_list)
# build the portions of the query URL that are independent of date and code(s)
query_url = '{0}/{1}?'.format(base_url, fhir_resource)
# add the date portions
if start_date is not None:
query_url += 'date=ge{0}&'.format(start_date)
if end_date is not None:
query_url += 'date=lt{0}&'.format(end_date)
query_url += '{0}'.format(code_str)
return query_url
###############################################################################
def _submit_query(query_url, token=None):
"""
Perform an HTTP GET on the query url and return the page of results.
"""
headers = {
'Accept':'application/json; charset=utf-8'
}
auth_type = 'Bearer'
if token is not None:
headers['Authorization'] = '{0} {1}'.format(auth_type, token)
has_error = False
r = None
try:
r = requests.get(query_url, headers=headers)
except requests.exceptions.HTTPError as e:
print('\n*** HTTP error: "{0}" ***\n'.format(e))
has_error = True
except requests.exceptions.ConnectionError as e:
print('\n*** ConnectionError: "{0}" ***\n'.format(e))
has_error = True
except requests.exceptions.Timeout as e:
print('\n*** Timeout: "{0}" ***\n'.format(e))
has_error = True
except requests.exceptions.RequestException as e:
print('\n*** RequestException: "{0}" ***\n'.format(e))
has_error = True
if has_error:
print('HTTP error, terminating...')
if r:
print('RESPONSE CONTENT')
print(r.content)
print('RESPONSE HEADERS')
print(r.headers)
return
if _TRACE:
print('Response status code: {0}'.format(r.status_code))
if 200 == r.status_code:
json_results = r.json()
if _TRACE:
print('\n*** QUERY RESULTS ***\n')
print(json_results)
print()
# returns a dict
return json_results
else:
return None
###############################################################################
def _extract_patient_id_from_ref(field_name, resource):
"""
Extract the patient_id from a FHIR resource and return to the caller.
Returns None if the a patient_id cannot be found.
"""
patient_id = None
if field_name in resource:
patient_ref = resource[field_name]['reference']
# of the form Patient/<patient_id>, keep the patient_id
pos = patient_ref.find('/')
if -1 == pos:
patient_id = patient_ref
else:
patient_id = patient_ref[pos+1:]
if patient_id is not None:
if 0 == len(patient_id):
patient_id = None
return patient_id
###############################################################################
def _extract_times(datetime_field_name, period_field_name, resource):
"""
Extract start and end times from a time field in a FHIR resource.
Return a (start, end) tuple.
"""
start = None
end = None
if datetime_field_name in resource:
start = resource[datetime_field_name]
elif period_field_name in resource:
period = resource[period_field_name]
if 'start' in period:
start = period['start']
if 'end' in period:
end = period['end']
return (start, end)
###############################################################################
def _process_condition(resource):
"""
Extract the patient_id and ONSET timestamps, if available, from a
Condition resource.
"""
patient_id = _extract_patient_id_from_ref('patient', resource)
if patient_id is not None:
start, end = _extract_times('onsetDateTime',
'onsetPeriod',
resource)
pqr = _PatientQueryResult(patient_id, start, end)
else:
pqr = None
return pqr
###############################################################################
def _process_procedure(resource):
"""
Extract the patient_id and relevant timestamps from a
Procedure resource.
"""
patient_id = _extract_patient_id_from_ref('subject', resource)
if patient_id is not None:
start, end = _extract_times('performedDateTime',
'performedPeriod',
resource)
pqr = _PatientQueryResult(patient_id, start, end)
else:
pqr = None
return pqr
###############################################################################
def _process_observation(resource):
"""
Extract the patient_id and relevant timestamps from an
Observation resource.
"""
patient_id = _extract_patient_id_from_ref('subject', resource)
if patient_id is not None:
start, end = _extract_times('effectiveDateTime',
'effectivePeriod',
resource)
pqr = _PatientQueryResult(patient_id, start, end)
else:
pqr = None
return pqr
###############################################################################
def run(query_url, token):
"""
Submit the FHIR query and extract patient and date data from all pages.
"""
RT_OBS = 'Observation'
RT_PROC = 'Procedure'
RT_COND = 'Condition'
results = []
# loop until all pages have been processed
url = query_url
while True:
if _TRACE:
print(url)
json_data = _submit_query(url, token)
next_url = None
if json_data is not None:
for key in json_data:
if 'link' == key:
link_list = json_data[key]
for obj in link_list:
if 'relation' in obj and 'next' == obj['relation']:
next_url = obj['url']
if 'entry' == key:
entry_list = json_data[key]
for entry in entry_list:
if 'resource' in entry:
resource = entry['resource']
if 'resourceType' in resource:
resource_type = resource['resourceType']
# pqr == _PatientQueryResult
pqr = None
if RT_COND == resource_type:
pqr = _process_condition(resource)
elif RT_OBS == resource_type:
pqr = _process_observation(resource)
elif RT_PROC == resource_type:
pqr = _process_procedure(resource)
if pqr is not None:
results.append(pqr)
if next_url is not None:
url = next_url
else:
break
return results
###############################################################################
def _is_valid_date(str_date):
"""
Check that the date string has one of these formats:
YYYY
YYYY-MM
YYYY-MM-DD
Accept any digits for the year, since de-identification of medical data
often produces dates in the future.
"""
match = re.match(r'\A\d\d\d\d\-(0[1-9]|1[0-2])\-' +\
r'(0[1-9]|1[0-9]|2[0-9]|3[0-1])\Z', str_date)
if match:
return True
match = re.match(r'\A\d\d\d\d\-(0[1-9]|1[0-2])\Z', str_date)
if match:
return True
match = re.match(r'\A\d\d\d\d\Z', str_date)
if match:
return True
print('Invalid date format: "{0}".'.format(str_date))
print('Valid date formats are YYYY, YYYY-MM, YYYY-MM-DD.')
return False
###############################################################################
def _get_version():
return '{0} {1}.{2}'.format(_MODULE_NAME, _VERSION_MAJOR, _VERSION_MINOR)
###############################################################################
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='build FHIR API query, run the query, and find patients')
parser.add_argument('-v', '--version',
action='store_true',
help='print version info and exit')
parser.add_argument('--base_url',
help='the base URL of the FHIR server to be queried')
parser.add_argument('--resource_type',
help='the FHIR resourceType to be queried')
parser.add_argument('--start_date',
help='return resources with timestamps >= start_date; '
'valid formats are YYYY, YYYY-MM, YYYY-MM-DD')
parser.add_argument('--end_date',
help='return resources with timestamps < end_date; '
'formats are YYYY, YYYY-MM, YYYY-MM-DD')
parser.add_argument('--code_list',
help='comma-separated list of codes with NO spaces')
parser.add_argument('--code_file',
help='CSV file with codesystems and codes')
parser.add_argument('--output_file',
help='write results to this file in CSV format')
parser.add_argument('--debug',
action='store_true',
help='print debugging information to stdout')
parser.add_argument('--token',
required=False,
help='FHIR server auth token (Bearer type)')
args = parser.parse_args()
if 'version' in args and args.version:
print(_get_version())
sys.exit(0)
if 'debug' in args and args.debug:
_enable_debug()
base_url = None
if 'base_url' in args and args.base_url:
base_url = args.base_url
else:
print('The --base_url argument is required.')
sys.exit(-1)
resource_type = None
if 'resource_type' in args and args.resource_type:
resource_type = args.resource_type
else:
print('The --resource_type argument is required.')
sys.exit(-1)
str_code_list = None
if 'code_list' in args and args.code_list:
str_code_list = args.code_list
str_code_file = None
if 'code_file' in args and args.code_file:
str_code_file = args.code_file
if not os.path.exists(str_code_file):
print('File not found: "{0}"'.format(str_code_file))
sys.exit(-1)
str_output_file = 'out.csv'
if 'output_file' in args and args.output_file:
str_output_file = args.output_file
start_date = None
if 'start_date' in args and args.start_date:
start_date = args.start_date.strip()
if not _is_valid_date(start_date):
sys.exit(-1)
end_date = None
if 'end_date' in args and args.end_date:
end_date = args.end_date.strip()
if not _is_valid_date(end_date):
sys.exit(-1)
# must have either a code_file or a list of codes
if str_code_list is None and str_code_file is None:
print('Either the --code_list or the --code_file argument must be provided.')
sys.exit(-1)
# cannot have both
if str_code_list is not None and str_code_file is not None:
print('The --code_list and --code_file arguments cannot both be present.')
sys.exit(-1)
token = None
if 'token' in args and args.token:
token = args.token.strip()
if 0 == len(token):
print('Authentication token is an empty string.')
sys.exit(-1)
query_url = build_query_url(base_url,
resource_type,
str_code_list,
str_code_file,
start_date,
end_date)
if _TRACE:
print('QUERY URL: {0}'.format(query_url))
if _EMPTY_STRING != query_url:
# submit the query to the FHIR server
results = run(query_url, token)
result_count = len(results)
if result_count > 0:
unique_patients = set()
cols = ['patient_id', 'datetime_start', 'datetime_end']
with open(str_output_file, 'wt') as outfile:
dict_writer = csv.DictWriter(outfile, fieldnames=cols)
dict_writer.writeheader()
for r in results:
dict_writer.writerow(
{cols[0]:r.patient_id,
cols[1]:r.datetime_start,
cols[2]:r.datetime_end}
)
unique_patients.add(r.patient_id)
print('Wrote {0} results for {1} patients to "{2}".'.
format(result_count,
len(unique_patients),
str_output_file))