Skip to content

Commit a2f3e26

Browse files
docs: correct LODS scorecomp comment (SAPS → LODS)
The scorecomp CTE comment was copied from SAPS scripts; rename it so LODS concepts are not mislabeled during review. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 3a914fc commit a2f3e26

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

mimic-iii/concepts/severityscores/lods.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ left join `physionet-data.mimiciii_derived.labs_first_day` labs
134134
(
135135
select
136136
cohort.*
137-
-- Below code calculates the component scores needed for SAPS
137+
-- Below code calculates the component scores needed for LODS
138138

139139
-- neurologic
140140
, case

mimic-iii/concepts_postgres/severityscores/lods.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ WITH cpap AS (
102102
ON ie.icustay_id = labs.icustay_id
103103
), scorecomp AS (
104104
SELECT
105-
cohort.*, /* Below code calculates the component scores needed for SAPS */ /* neurologic */
105+
cohort.*, /* Below code calculates the component scores needed for LODS */ /* neurologic */
106106
CASE
107107
WHEN mingcs IS NULL
108108
THEN NULL

mimic-iv/concepts/score/lods.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ WITH cpap AS (
128128
, scorecomp AS (
129129
SELECT
130130
cohort.*
131-
-- Below code calculates the component scores needed for SAPS
131+
-- Below code calculates the component scores needed for LODS
132132

133133
-- neurologic
134134
, CASE

mimic-iv/concepts_postgres/score/lods.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ WITH cpap AS (
101101
ON ie.stay_id = labs.stay_id
102102
), scorecomp AS (
103103
SELECT
104-
cohort.*, /* Below code calculates the component scores needed for SAPS */ /* neurologic */
104+
cohort.*, /* Below code calculates the component scores needed for LODS */ /* neurologic */
105105
CASE
106106
WHEN gcs_min IS NULL
107107
THEN NULL

0 commit comments

Comments
 (0)