-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpatch_2022_08_31.sql
More file actions
810 lines (711 loc) · 32.5 KB
/
Copy pathpatch_2022_08_31.sql
File metadata and controls
810 lines (711 loc) · 32.5 KB
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
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
--concept_relationship_manual_backup_2022_08_31;
DO
$body$
DECLARE
update text;
BEGIN
SELECT TO_CHAR(CURRENT_DATE, 'YYYY_MM_DD')
INTO update;
EXECUTE format('create table %I as select * from concept_relationship_manual',
'concept_relationship_manual_backup_' || update);
END
$body$;
--concept_manual_backup_2022_08_31;
DO
$body$
DECLARE
update text;
BEGIN
SELECT TO_CHAR(CURRENT_DATE, 'YYYY_MM_DD')
INTO update;
EXECUTE format('create table %I as select * from concept_manual',
'concept_manual_backup_' || update);
END
$body$;
TRUNCATE concept_manual;
TRUNCATE concept_relationship_manual;
-- Per WG request
INSERT INTO concept_manual (concept_name, domain_id, vocabulary_id, concept_class_id, standard_concept, concept_code, valid_start_date, valid_end_date, invalid_reason)
SELECT
'Initial Diagnosis' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Extension/Invasion' as concept_class_id,
'S' standard_concept,
'init_diag' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
;
--Update of distant lymph nodes
INSERT INTO concept_manual (concept_name, domain_id, vocabulary_id, concept_class_id, standard_concept, concept_code, valid_start_date, valid_end_date, invalid_reason)
SELECT
'Distant spread to lymph node' as concept_name,
domain_id,
vocabulary_id,
concept_class_id,
standard_concept,
concept_code,
valid_start_date,
valid_end_date,
invalid_reason
FROM concept
where concept_id =36769243 -- Distant Lymph Nodes
;
--Update of lymph nodes
INSERT INTO concept_manual (concept_name, domain_id, vocabulary_id, concept_class_id, standard_concept, concept_code, valid_start_date, valid_end_date, invalid_reason)
SELECT
'Spread to lymph node' as concept_name,
domain_id,
vocabulary_id,
concept_class_id,
standard_concept,
concept_code,
valid_start_date,
valid_end_date,
invalid_reason
FROM concept
where concept_id =36768587 -- Lymph Nodes
;
--Regional LN renaming
INSERT INTO concept_manual (concept_name, domain_id, vocabulary_id, concept_class_id, standard_concept, concept_code, valid_start_date, valid_end_date, invalid_reason)
SELECT
'Regional spread to lymph node' as concept_name,
domain_id,
vocabulary_id,
concept_class_id,
standard_concept,
concept_code,
valid_start_date,
valid_end_date,
invalid_reason
FROM concept
where concept_id =36769269 -- Regional Lymph Nodes
;
--Rename of post therapy clinical
INSERT INTO concept_manual (concept_name, domain_id, vocabulary_id, concept_class_id, standard_concept, concept_code, valid_start_date, valid_end_date, invalid_reason)
SELECT
regexp_replace(concept_name,'clinica ','clinical ','g') as concept_name, domain_id, vocabulary_id, concept_class_id, standard_concept, concept_code, valid_start_date, valid_end_date, invalid_reason
FROM concept
where concept_name ilike '%clinica %'
and standard_concept='S'
and vocabulary_id='Cancer Modifier'
and concept_class_id='Staging/Grading'
;
-- ETL-driiven request
INSERT INTO concept_manual (concept_name, domain_id, vocabulary_id, concept_class_id, standard_concept, concept_code, valid_start_date, valid_end_date, invalid_reason)
SELECT
'Nottingham nuclear score 1' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'S' standard_concept,
'Nottingham-nScore-1' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT
'Nottingham nuclear score 2' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'S' standard_concept,
'Nottingham-nScore-2' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT
'Nottingham nuclear score 3' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'S' standard_concept,
'Nottingham-nScore-3' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT
'Nottingham mitotic score 1' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'S' standard_concept,
'Nottingham-mScore-1' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT
'Nottingham mitotic score 2' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'S' standard_concept,
'Nottingham-mScore-2' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT
'Nottingham mitotic score 3' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'S' standard_concept,
'Nottingham-mScore-3' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT
'Nottingham tubular score 1' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'S' standard_concept,
'Nottingham-tScore-1' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT
'Nottingham tubular score 2' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'S' standard_concept,
'Nottingham-tScore-2' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT
'Nottingham tubular score 3' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'S' standard_concept,
'Nottingham-tScore-3' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
;
--Is a
INSERT INTO concept_relationship_manual_staging (concept_code_1, vocabulary_id_1, valid_start_date, valid_end_date, invalid_reason, relationship_id, concept_code_2, vocabulary_id_2)
SELECT distinct concept_code_1,
'Cancer Modifier' as vocabulary_id_1,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
null as invalid_reason,
'Is a' as relationship_id,
concept_code_2,
'Cancer Modifier' as vocabulary_id_2
FROM (
select c.concept_code as concept_code_1,cc.concept_code as concept_code_2,row_number() OVER (PARTITION BY c.concept_code ORDER BY length(cc.concept_code) DESC) AS rating_in_section
FROM concept_manual c
join concept cc
on c.concept_code ilike cc.concept_code || '%'
and c.concept_code<>cc.concept_code
and c.standard_concept='S'
and cc.standard_concept='S'
and cc.standard_concept='S'
and cc.vocabulary_id='Cancer Modifier'
and cc.concept_class_id='Staging/Grading')
as tablescd
where rating_in_section=1
and (concept_code_1,'Is a',concept_code_2) NOT IN (select concept_code_1,relationship_id,concept_code_2 from concept_relationship_manual_staging where concept_relationship_manual_staging .concept_code_1=concept_relationship_manual_staging .concept_code_2 UNION ALL SELECT c.concept_code,relationship_id,cc.concept_code from concept c join concept_relationship cr on c.concept_id = cr.concept_id_1 and c.concept_class_id='Staging/Grading' and cr.relationship_id='Is a' and cr.invalid_reason is null join concept cc on cr.concept_id_2=cc.concept_id and cc.concept_class_id='Staging/Grading')
;
--Relationship Creation
INSERT INTO concept_relationship_manual (concept_code_1, vocabulary_id_1, relationship_id, valid_start_date, valid_end_date, invalid_reason,concept_code_2,vocabulary_id_2)
SELECT c.concept_code as concept_code_1,
c.vocabulary_id as vocabulary_id_1,
'Is a' as reationship_id,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason,
c2.concept_code as concept_code_2,
c2.vocabulary_id as vocabulary_id_2
FROM concept_manual c
JOIN concept_manual c2
on c.concept_name ilike '%' || c2.concept_name
and c.concept_name<>c2.concept_name
UNION ALL
SELECT c.concept_code as concept_code_1,c.vocabulary_id as vocabulary_id_1,
'Is a' as reationship_id,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason,
c2.concept_code as concept_code_2,c2.vocabulary_id as vocabulary_id_2
FROM concept_manual c
JOIN concept c2
on c2.concept_id= 36769180 -- Metastasis
and c.concept_code = 'OMOP4998920' -- Distant Lymph Nodes
;
--Classifiers
WITH classifiers as (
SELECT 'FIGO finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'FIGO' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'RECIST finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'RECIST' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'iRECIST finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'iRECIST' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'irRECIST finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'irRECIST' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'AJCC/UICC finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'AJCC/UICC' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'AJCC finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'AJCC' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Ann Arbor finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Ann_Arbor' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Binet finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Binet' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'CHOI finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'CHOI' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Clark finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Clark' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'COG finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'COG' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Deauville finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Deauville' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Dukes finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Dukes' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Enneking finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Enneking' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'ENSAT finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'ENSAT' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Evans finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Evans' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Gleason finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Gleason' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'INRG finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'INRG' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'IRSG finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'IRSG' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'INSS finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'INSS' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'IRS-modified finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'IRSm' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'ISS finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'ISS' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Lugano finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Lugano' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Mandard finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Mandard' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Masaoka-Koga finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Masaoka_Koga' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Nottingham finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Nottingham' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'PERCIST finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'PERCIST' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'POG finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'POG' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'PRETEXT finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'PRETEXT' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'RANO finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'RANO' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'RISS finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'RISS' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Rai finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Rai' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Reese-Ellsworth finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'Reese_Ellsworth' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'SIOP/COG/NWTSG finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'SIOP/COG/NWTSG' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'WHO finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'WHO' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'mRai finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'mRai' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'BCLC finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'BCLC' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
UNION ALL
SELECT 'Durie/Salmon finding' as concept_name,
'Measurement' as domain_id,
'Cancer Modifier' as vocabulary_id,
'Staging/Grading' as concept_class_id,
'C' standard_concept,
'DS' as concept_code,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason
)
INSERT INTO concept_manual (concept_name, domain_id, vocabulary_id, concept_class_id, standard_concept, concept_code, valid_start_date, valid_end_date, invalid_reason)
SELECT concept_name, domain_id, vocabulary_id, concept_class_id, standard_concept, concept_code, valid_start_date, valid_end_date, invalid_reason
FROM classifiers
;
--CR relationships for Classifiers
WITH
relationships as (
SELECT
c.concept_id,
c.concept_code as concept_code_1,
c.vocabulary_id as vocabulary_id_1,
'Is a' as relationship_id,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason,
a.concept_code as concept_code_2,
a.vocabulary_id as vocabulary_id_2,
row_number()
OVER (PARTITION BY c.concept_code ORDER BY length(a.concept_code) DESC) AS rating_in_section
FROM concept c
left JOIN concept_manual a
ON c.concept_code ilike '%' || a.concept_code || '%'
where c.concept_class_id = 'Staging/Grading'
and c.standard_concept = 'S'
and a.concept_code is NOT null
and c.concept_code <>'Stage-DS'
)
, tab as (
SELECT r.concept_id,
concept_code_1,
vocabulary_id_1,
relationship_id,
r.valid_start_date,
r.valid_end_date,
r.invalid_reason,
concept_code_2,
vocabulary_id_2,
rating_in_section,
cc.concept_name,
cc.concept_code,
cc.vocabulary_id,
row_number() OVER (PARTITION BY r.concept_id ORDER BY min_levels_of_separation DESC) AS ancest
FROM relationships r
JOIN devv5.concept_ancestor ca
on r.concept_id=descendant_concept_id
JOIN devv5.concept cc
on ancestor_concept_id=cc.concept_id
where rating_in_section=1
and cc.concept_code ilike '%' || r.concept_code_2 || '%')
INSERT INTO concept_relationship_manual (concept_code_1, vocabulary_id_1, relationship_id, valid_start_date, valid_end_date, invalid_reason,concept_code_2,vocabulary_id_2)
SELECT distinct
concept_code as concept_code_1,
vocabulary_id as vocabulary_id_1,
'Is a' as relationship_id,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason,
concept_code_2,
vocabulary_id_2
FROM tab
where ancest=1
and concept_code<>concept_code_2
;
--Manual Is a
INSERT INTO concept_relationship_manual (concept_code_1, vocabulary_id_1, relationship_id, valid_start_date, valid_end_date, invalid_reason,concept_code_2,vocabulary_id_2)
SELECT
c.concept_code as concept_code_1,
c.vocabulary_id as vocabulary_id_1,
'Is a' as relationship_id,
CURRENT_DATE as valid_start_date,
'2099-12-31'::date as valid_end_date,
NULL as invalid_reason,
a.concept_code as concept_code_2,
a.vocabulary_id as vocabulary_id_2
FROM concept_manual c
left JOIN concept_manual a
ON split_part(c.concept_code,'-',1) ilike '%' || a.concept_code || '%'
where c.concept_class_id = 'Staging/Grading'
and c.standard_concept = 'S'
and a.standard_concept ='C'
and c.concept_code <>'Stage-DS'
and a.concept_code<>c.concept_code
;