From 3f325c0a5bd6072132edd652ed3de0897ff64fbc Mon Sep 17 00:00:00 2001 From: Taksh Date: Fri, 31 Jul 2026 14:22:53 +0300 Subject: [PATCH] =?UTF-8?q?docs:=20correct=20LODS=20scorecomp=20comment=20?= =?UTF-8?q?(SAPS=20=E2=86=92=20LODS)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The scorecomp CTE comment was copied from SAPS scripts; rename it so LODS concepts are not mislabeled during review. --- mimic-iii/concepts/severityscores/lods.sql | 2 +- mimic-iii/concepts_postgres/severityscores/lods.sql | 2 +- mimic-iv/concepts/score/lods.sql | 2 +- mimic-iv/concepts_postgres/score/lods.sql | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mimic-iii/concepts/severityscores/lods.sql b/mimic-iii/concepts/severityscores/lods.sql index b5c3a7cbb..bdb640cad 100644 --- a/mimic-iii/concepts/severityscores/lods.sql +++ b/mimic-iii/concepts/severityscores/lods.sql @@ -134,7 +134,7 @@ left join `physionet-data.mimiciii_derived.labs_first_day` labs ( select cohort.* - -- Below code calculates the component scores needed for SAPS + -- Below code calculates the component scores needed for LODS -- neurologic , case diff --git a/mimic-iii/concepts_postgres/severityscores/lods.sql b/mimic-iii/concepts_postgres/severityscores/lods.sql index 55422d676..a879dfdb0 100644 --- a/mimic-iii/concepts_postgres/severityscores/lods.sql +++ b/mimic-iii/concepts_postgres/severityscores/lods.sql @@ -102,7 +102,7 @@ WITH cpap AS ( ON ie.icustay_id = labs.icustay_id ), scorecomp AS ( SELECT - cohort.*, /* Below code calculates the component scores needed for SAPS */ /* neurologic */ + cohort.*, /* Below code calculates the component scores needed for LODS */ /* neurologic */ CASE WHEN mingcs IS NULL THEN NULL diff --git a/mimic-iv/concepts/score/lods.sql b/mimic-iv/concepts/score/lods.sql index bc1054023..f6c74ba33 100644 --- a/mimic-iv/concepts/score/lods.sql +++ b/mimic-iv/concepts/score/lods.sql @@ -128,7 +128,7 @@ WITH cpap AS ( , scorecomp AS ( SELECT cohort.* - -- Below code calculates the component scores needed for SAPS + -- Below code calculates the component scores needed for LODS -- neurologic , CASE diff --git a/mimic-iv/concepts_postgres/score/lods.sql b/mimic-iv/concepts_postgres/score/lods.sql index db27acc26..edaa0c740 100644 --- a/mimic-iv/concepts_postgres/score/lods.sql +++ b/mimic-iv/concepts_postgres/score/lods.sql @@ -101,7 +101,7 @@ WITH cpap AS ( ON ie.stay_id = labs.stay_id ), scorecomp AS ( SELECT - cohort.*, /* Below code calculates the component scores needed for SAPS */ /* neurologic */ + cohort.*, /* Below code calculates the component scores needed for LODS */ /* neurologic */ CASE WHEN gcs_min IS NULL THEN NULL