Top Banner
I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong Pan MS Janice Donahue Susanne Churchill Ph.D. Isaac Kohane MD, Ph.D.
18

I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Dec 29, 2015

Download

Documents

August Bridges
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

I2b2 Version 1.6

Shawn Murphy MD, Ph.D.Griffin Weber MD, Ph.D.

Michael MendisVivian Gainer MSNich WattanasinLori Phillips MSRajesh Kuttan

Wensong Pan MSJanice Donahue

Susanne Churchill Ph.D.Isaac Kohane MD, Ph.D.

Page 2: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Version 1.6 = Enhancing Query Capabilities

Ontology terms can define more types of queries Patient and Visit dimensions

Can create queries using Patient SetsCan create queries using Previous QueriesCan find patients that have concepts that occur in the Same

VisitCan express Modifiers in i2b2 data model

Page 3: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Ontology terms can define more types of queries

Patient_Dimension

Page 4: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Ontology terms can define more types of queries

select patient_num from [c_facttablename] where [c_facttablecolumnname] IN (select [c_facttablecolumnname] from [c_tablename] where [c_columnname] [c_operator] [c_dimcode])

select patient_num from patient_dimension where birth_date BETWEEN sysdate – (365.25*18) AND sysdate – (365.25*10)

Page 5: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Ontology terms can define more types of queries

Visit_Dimension

Page 6: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Encounters for all patients that had a visit when they were 40-45 years old:(SQL Server)

select encounter_num from visit_dimensionwhere start_date BETWEEN((select birth_date from patient_dimension where patient_num = visit_dimension.patient_num) + (365.25 * 40))AND((select birth_date from patient_dimension where patient_num = visit_dimension.patient_num) + (365.25 * 45))

(Ontology table entries)[c_name] = patients that had a visit when they were 40-45 years old[c_fullpath] = \\encounter detail\ age at visit\ 40 – 45 y/o[c_facttablecolumnname] = encounter_num[c_tablename] = visit_dimension[c_columnname] = start_date[c_operator] = BETWEEN[c_dimcode] = ((select birth_date from patient_dimension where patient_num = visit_dimension.patient_num) + (365.25 * 40))AND((select birth_date from patient_dimension where patient_num = visit_dimension.patient_num) + (365.25 * 45))

Page 7: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.
Page 8: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.
Page 9: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.
Page 10: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.
Page 11: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Can find patients that have concepts that occur in the Same Visit

Page 12: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Can express Modifiers in i2b2 data model

P_num|E_num|Instance_num|C_CD|S_d|Modifier_CD|ValType_CD|TVal|NVal------------------------------------------------------------------ 123|107|1|cpt:59622|20060304|@|<null>|<null>|<null>123|107|1|cpt:59622|20060304|cptmod:62|<null>|<null>|<null>123|107|1|cpt:59622|20060304|cptmod:AA|<null>|<null>|<null>123|107|1|cpt:59622|20060304|cptmod:TH|<null>|<null>|<null>123|567|1|med:aspirin|20100404|@|<null>|<null>|<null>123|567|1|med:aspirin|20100404|MED:DOSE|N|E|325123|567|1|med:aspirin|20100404|MED:FREQ|T|QD|<null>123|567|1|med:aspirin|20100404|MED:ROUTE|T|PO|<null>123|567|2|med:aspirin|20100404|@|<null>|<null>|<null>123|567|2|med:aspirin|20100404|MED:DOSE|N|E|83123|567|2|med:aspirin|20100404|MED:FREQ|T|BID|<null>123|567|2|med:aspirin|20100404|MED:ROUTE|T|PO|<null>

Page 13: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Tools for Community

Shawn Murphy MD, Ph.D.

Michael Mendis

Nich Wattanasin

Rajesh Kuttan

Janice Donahue

Page 14: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Tools for Community

Shared Wiki Documentation http://community.i2b2.org/wiki

JIRA Bug Tracking http://community.i2b2.org/jira

Source Code Subversion Repository http://svn.i2b2.org/svn/i2b2/trunk

Web site for i2b2 distribution and documentation https://www.i2b2.org/software

Page 15: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.
Page 16: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

MainBranch

ProgrammerWorking

ProgrammerGets copy of Code

ProgrammerChecks out Code

QA

ProgrammerGets copy of Code

ProgrammerChecks in Code

New Code is Merged

All other programmers are blocked

Participating in i2b2 sponsored projects

Page 17: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

Leading an i2b2 Related Project

Connections to caBIGConnections to BIRNLoading data from HL7Contributed Data VisualizationsContributed Data analysesTies to bio-specimensLDAP integration with project management Integration of Master Patient Index

Page 18: I2b2 Version 1.6 Shawn Murphy MD, Ph.D. Griffin Weber MD, Ph.D. Michael Mendis Vivian Gainer MS Nich Wattanasin Lori Phillips MS Rajesh Kuttan Wensong.

https://www.i2b2.org/software

Shawn Murphy MD, Ph.D.Griffin Weber MD, Ph.D.

Michael MendisVivian Gainer MSNich WattanasinLori Phillips MSRajesh Kuttan

Wensong Pan MSJanice Donahue

Susanne Churchill Ph.D.Isaac Kohane MD, Ph.D.