Skip to content

Commit 61226d3

Browse files
committed
fix(lods): remove incorrect BUN >= 7.50 renal point
Le Gall LODS awards renal +1 for BUN 17-27 mg/dL (then 28-55 -> 3, >=56 -> 5). The extra `bun_max >= 7.50 then 1` branch incorrectly scored BUN 7.5-16.9 as organ dysfunction. Remove it in MIMIC-III and MIMIC-IV sources and their dialect copies. Fixes #1065
1 parent 780de1c commit 61226d3

6 files changed

Lines changed: 0 additions & 10 deletions

File tree

mimic-iii/concepts/severityscores/lods.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ select
174174
when urineoutput >= 10000.0 then 3
175175
when creatinine_max >= 1.20 then 1
176176
when bun_max >= 17.0 then 1
177-
when bun_max >= 7.50 then 1
178177
else 0
179178
end as renal
180179

mimic-iii/concepts_duckdb/severityscores/lods.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,6 @@ WITH cpap AS (
145145
THEN 1
146146
WHEN bun_max >= 17.0
147147
THEN 1
148-
WHEN bun_max >= 7.50
149-
THEN 1
150148
ELSE 0
151149
END AS renal,
152150
CASE

mimic-iii/concepts_postgres/severityscores/lods.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,6 @@ WITH cpap AS (
154154
THEN 1
155155
WHEN bun_max >= 17.0
156156
THEN 1
157-
WHEN bun_max >= 7.50
158-
THEN 1
159157
ELSE 0
160158
END AS renal, /* pulmonary */
161159
CASE

mimic-iv/concepts/score/lods.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,6 @@ WITH cpap AS (
168168
WHEN urineoutput >= 10000.0 THEN 3
169169
WHEN creatinine_max >= 1.20 THEN 1
170170
WHEN bun_max >= 17.0 THEN 1
171-
WHEN bun_max >= 7.50 THEN 1
172171
ELSE 0
173172
END AS renal
174173

mimic-iv/concepts_duckdb/score/lods.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,6 @@ WITH cpap AS (
148148
THEN 1
149149
WHEN bun_max >= 17.0
150150
THEN 1
151-
WHEN bun_max >= 7.50
152-
THEN 1
153151
ELSE 0
154152
END AS renal,
155153
CASE

mimic-iv/concepts_postgres/score/lods.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,6 @@ WITH cpap AS (
153153
THEN 1
154154
WHEN bun_max >= 17.0
155155
THEN 1
156-
WHEN bun_max >= 7.50
157-
THEN 1
158156
ELSE 0
159157
END AS renal, /* pulmonary */
160158
CASE

0 commit comments

Comments
 (0)