Skip to content

Commit 6326730

Browse files
authored
Merge pull request #1116 from ajb5d/update_default_branch_names
update github links to new default branch name (master -> main)
2 parents 5e0d753 + bb248c0 commit 6326730

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

mimic-iii/buildmimic/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ This directory contains scripts that can be used to create a new instance of the
44

55
## Automated tests (PostgreSQL scripts only)
66

7-
Pushing to this repository triggers [a simple set of tests](https://github.com/MIT-LCP/mimic-code/tree/master/tests) to run on [Travis CI](https://travis-ci.org/). The status of the tests is [![Build Status](https://travis-ci.org/MIT-LCP/mimic-code.svg?branch=master)](https://travis-ci.org/MIT-LCP/mimic-code)
7+
Pushing to this repository triggers [a simple set of tests](https://github.com/MIT-LCP/mimic-code/tree/main/mimic-iii/tests) to run on [Travis CI](https://travis-ci.org/). The status of the tests is [![Build Status](https://travis-ci.org/MIT-LCP/mimic-code.svg?branch=main)](https://travis-ci.org/MIT-LCP/mimic-code)
88

mimic-iii/buildmimic/bigquery/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ BigQuery schemas are defined by JSON files. These files are an array of dictiona
138138

139139
The information about the columns are compiled from several sources:
140140

141-
1. [The PostgreSQL build scripts](https://github.com/MIT-LCP/mimic-code/tree/master/buildmimic/postgres)
141+
1. [The PostgreSQL build scripts](https://github.com/MIT-LCP/mimic-code/tree/main/mimic-iii/buildmimic/postgres)
142142
2. [The MIMIC-III online documentation](https://mimic.physionet.org/about/mimic/)
143143
3. [A schematic of the MIMIC-III database](https://mit-lcp.github.io/mimic-schema-spy/)
144144

mimic-iii/concepts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This can be done as follows:
3636
* This file runs the scripts after applying a few regular expressions which convert table references and date calculations appropriately.
3737
* This file generates all concepts on the `public` schema.
3838

39-
If you do not have access to a PostgreSQL database with MIMIC, you can read more about building the data within one in the [buildmimic/postgres](https://github.com/MIT-LCP/mimic-code/tree/master/buildmimic/postgres) folder.
39+
If you do not have access to a PostgreSQL database with MIMIC, you can read more about building the data within one in the [buildmimic/postgres](https://github.com/MIT-LCP/mimic-code/tree/main/mimic-iii/buildmimic/postgres) folder.
4040

4141
## Generating the concepts in PostgreSQL (Windows)
4242

mimic-iii/tutorials/sql-intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -603,13 +603,13 @@ AND serv.rank = 1;
603603

604604
# Using other concepts available in the MIMIC Code Repository
605605

606-
The MIMIC Code Repository is a repository of code shared by the research community - it's where this tutorial is hosted! It is intended to be a central hub for sharing, refining, and reusing code used for analysis of the MIMIC critical care database. For example, you may be interested in identifying which patients have severe sepsis according to the [Angus Criteria](https://github.com/MIT-LCP/mimic-code/blob/master/concepts/sepsis/angus2001.pdf). Rather than re-implementing the criteria, you can make use of existing code in the MIMIC Code Repository.
606+
The MIMIC Code Repository is a repository of code shared by the research community - it's where this tutorial is hosted! It is intended to be a central hub for sharing, refining, and reusing code used for analysis of the MIMIC critical care database. For example, you may be interested in identifying which patients have severe sepsis according to the [Angus Criteria](https://github.com/MIT-LCP/mimic-code/blob/main/mimic-iii/concepts/sepsis/angus2001.pdf). Rather than re-implementing the criteria, you can make use of existing code in the MIMIC Code Repository.
607607

608-
A materialised view for the Angus Criteria is available at: https://github.com/MIT-LCP/mimic-code/blob/master/concepts/sepsis/angus.sql. Running this query will generate a table with columns for `subject_id`,`hadm_id`, and `angus` status.
608+
A materialised view for the Angus Criteria is available at: https://github.com/MIT-LCP/mimic-code/tree/main/mimic-iii/concepts/sepsis/angus.sql. Running this query will generate a table with columns for `subject_id`,`hadm_id`, and `angus` status.
609609

610610
## Exercise 10
611611

612-
Build a materialized view of the Angus criteria on your local database using the code at: https://github.com/MIT-LCP/mimic-code/blob/master/concepts/sepsis/angus.sql
612+
Build a materialized view of the Angus criteria on your local database using the code at: https://github.com/MIT-LCP/mimic-code/tree/main/mimic-iii/concepts/sepsis/angus.sql
613613

614614
## Solution 10
615615

0 commit comments

Comments
 (0)