Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mimic-iv-ed/buildmimic/duckdb/import_duckdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ find "$MIMIC_DIR" -type f -name '*.csv???' | sort | while IFS= read -r FILE; do

# skip directories which we do not expect in mimic-iv-ed
# avoids syntax errors if mimic-iv in the same dir
case $DIRNAME in
case "$DIRNAME" in
(ed) ;; # OK
(*) continue;
esac
Expand Down
2 changes: 1 addition & 1 deletion mimic-iv-note/buildmimic/duckdb/import_duckdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ find "$MIMIC_DIR" -type f -name '*.csv???' | sort | while IFS= read -r FILE; do

# skip directories which we do not expect in mimic-iv-note
# avoids syntax errors if mimic-iv in the same dir
case $DIRNAME in
case "$DIRNAME" in
(note) ;; # OK
(*) continue;
esac
Expand Down
2 changes: 1 addition & 1 deletion mimic-iv/buildmimic/duckdb/import_duckdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ find "$MIMIC_DIR" -type f -name '*.csv???' | sort | while IFS= read -r FILE; do

# skip directories which we do not expect in mimic-iv
# avoids syntax errors if mimic-iv-ed in the same dir
case $DIRNAME in
case "$DIRNAME" in
(hosp|icu) ;; # OK
(*) continue;
esac
Expand Down
Loading