| Literature DB >> 23117567 |
Keiichi Yamamoto1, Eriko Sumi, Toru Yamazaki, Keita Asai, Masashi Yamori, Satoshi Teramukai, Kazuhisa Bessho, Masayuki Yokode, Masanori Fukushima.
Abstract
OBJECTIVE: The use of electronic medical record (EMR) data is necessary to improve clinical research efficiency. However, it is not easy to identify patients who meet research eligibility criteria and collect the necessary information from EMRs because the data collection process must integrate various techniques, including the development of a data warehouse and translation of eligibility criteria into computable criteria. This research aimed to demonstrate an electronic medical records retrieval system (ERS) and an example of a hospital-based cohort study that identified both patients and exposure with an ERS. We also evaluated the feasibility and usefulness of the method.Entities:
Year: 2012 PMID: 23117567 PMCID: PMC3533000 DOI: 10.1136/bmjopen-2012-001622
Source DB: PubMed Journal: BMJ Open ISSN: 2044-6055 Impact factor: 2.692
Figure 1Data model for our electronic medical record retrieval system.
Figure 2Example structured query language (SQL) to create the target patient list.
Figure 3Example structured query language (SQL) to flag the target patient report for investigator confirmation.
Computable criteria for our test research
| Criterion | Entity | Operator symbol | Attribute | Operator symbol | Parameter |
|---|---|---|---|---|---|
| Inclusion criteria: osteoporosis diagnosis | Diagnosis | – | ICD10Code | In | (osteoporosis ICD10 code list) |
| and | DiagnosisDate | >= | ‘10/01/2000’ | ||
| and | DiagnosisDate | <= | ‘09/30/2010’ | ||
| and | SuspectedFlag | = | Fixed | ||
| Inclusion criteria: osteoporosis drug administrations | Medications and injections | – | DrugCode | in | (osteoporosis drugs code list) |
| and | ExecuteDate | >= | ‘10/01/2000’ | ||
| and | ExecuteDate | <= | ‘09/30/2010’ | ||
| Exclusion criteria: oral cancer diagnosis | Diagnosis | – | ICD10Code | in | (oral cancer ICD10 code list) |
| and | DiagnosisDate | >= | 10/01/2000’ | ||
| and | DiagnosisDate | <= | 09/30/2010’ | ||
| and | SuspectedFlag | = | Fixed | ||
| Exclusion criteria: intravenous BP administrations | Medications and injections | – | DrugCode | in | (intravenous BP drugs code list) |
| and | ExecuteDate | >= | ‘10/01/2000’ | ||
| and | ExecuteDate | <= | ‘09/30/2010’ | ||
| Oral BP administrations | Medications and injections | – | DrugCode | in | (oral BP drugs code list) |
| and | ExecuteDate | >= | ‘10/01/2000’ | ||
| and | ExecuteDate | <= | ‘09/30/2010’ | ||
| Inflammatory jaw condition diagnosis | Diagnosis | – | ICD10Code | in | (inflammatory conditions of jaws ICD10 code list) |
| and | DiagnosisDate | >= | ‘10/01/2000’ | ||
| and | DiagnosisDate | <= | ‘09/30/2010’ | ||
| and | SuspectedFlag | = | Fixed | ||
| Other suspicious disease diagnosis | Diagnosis | – | ICD10Code | in | (other suspicious disease ICD10 code list) |
| and | DiagnosisDate | >= | ‘10/01/2000’ | ||
| and | DiagnosisDate | <= | ‘09/30/2010’ | ||
| and | SuspectedFlag | = | Fixed | ||
| Diabetes diagnosis | Diagnosis | – | ICD10Code | in | (diabetes ICD10 code list) |
| and | DiagnosisDate | >= | ‘10/01/2000’ | ||
| and | DiagnosisDate | <= | ‘09/30/2010’ | ||
| and | SuspectedFlag | = | Fixed | ||
| Steroid drug administrations | Medications and injections | – | DrugCode | in | (steroid drugs code list) |
| and | ExecuteDate | >= | ‘10/01/2000’ | ||
| and | ExecuteDate | <= | ‘09/30/2010’ | ||
| Anticancer drug administrations | Medications and injections | – | DrugCode | in | (anticancer drugs code list) |
| and | ExecuteDate | >= | ‘10/01/2000’ | ||
| and | ExecuteDate | <= | ‘09/30/2010’ | ||
| Diabetes drug administrations | Medications and injections | – | DrugCode | in | (diabetes drugs code list) |
| And | ExecuteDate | >= | ‘10/01/2000’ | ||
| And | ExecuteDate | <= | ‘09/30/2010’ | ||
| HbA1c test execution | Laboratory test | – | Laboratory TestCode | in | (HbA1c test code) |
| and | TestDate | >= | ‘10/01/2000’ | ||
| and | TestDate | <= | ‘09/30/2010’ | ||
| Radiological finding reports | Diagnostic studies | – | ReportName | in | (report name list of oral region) |
| Pathological finding reports | Diagnostic studies | – | SampleName | contains | ‘bone’ |
| Or | SampleName | contains | ‘jaw’ | ||
| Radio isotope finding reports | Diagnostic studies | – | – | – | – |
BP, bisphosphonates; ID, identifications; ICD, International Classification of Diseases.
Figure 4Schema of data collection and confirmation.