Beyond i2b2 with BD2K Shawn Murphy MD, Ph.D. Lori Phillips MS Alyssa Goodson MS Christopher Herrick MBA

Development of Distributed Systems • Distributed in a Relational Database • Multiple Fact tables • Dimension tables remain reconciled

• Distributed in a Network • Multiple Star Schemas • Dimension tables must be reconciled

Extending i2b2 for Multiple Fact Tables Lori Phillips MS

i2b2 Star Schema visit_dimension patient_dimension PK

Patient_Num Birth_Date Death_Date Vital_Status_CD Age_Num* Gender_CD* Race_CD* Ethnicity_CD*

1 ∞ ∞

PK

Concept_Path Concept_CD Name_Char

PK PK PK PK PK PK PK

Patient_Num Encounter_Num Concept_CD Observer_CD Start_Date Modifier_CD Instance_Num End_Date ValType_CD TVal_Char NVal_Num ValueFlag_CD Observation_Blob

concept_dimension



1

observation_fact

PK

Encounter_Num Start_Date End_Date Active_Status_CD Location_CD*

∞ ∞

∞ ∞ observer_dimension PK

Observer_Path Observer_CD Name_Char



modifier_dimension PK

Modifier_Path Modifier_CD Name_Char

OMOP v5

= fact tables

Visit (dimension)

Patient (dimension)

OMOP v5

= fact tables = dimension tables

Visit (dimension)

Patient (dimension)

Ontology Tables Need to be Created Build ontology of OMOP standard concepts

Create views for OMOP Fact Tables

Use Ontology Tables to direct Queries to proper Fact Table view

Queries can be performed in i2b2

Successful OMOP Queries: • Query types included • • • • •

Multi-panel, multi-domain queries Date constrained queries Occurs > x queries Value constrained queries Temporal queries

• Queries not fully worked out • Modifier queries • Ancillary tables • Cover all OMOP Ontologies

Same Approach to PCORNet CDM

Demo of linking OMOP and i2b2 web services • Medicare Claims Synthetic Public Use Files (SynPUFs) in OMOP v5 CDM is background data set • https://www.i2b2.org/webclient/ •

Username: omop



Password: demouser

Managing Genomic Fact Table Alyssa Goodson

Use of Static Genomic Fact Table Genotype Data

Phenotype Data

Variant Call Format (VCF) metadata lines in the form of key=value pairs that define the data type and format of specific columns



A specification maintained by the Global Alliance Data Working Group File Formats Task Team



Used for describing genomic positions (loci)

eight mandatory tab-delimited columns with the headers: #CHROM, POS, ID, REF, ALT, QUAL, FILTER, and INFO

• • • • •

FORMAT column (optional) is used and contains the “GT” keyword to specify that genotype data exist The #CHROM, POS, REF and ALT fields are taken directly from the MEGA Consortium chip manifest file provided by Illumina ID field contains unique id for each position QUAL and FILTER fields are not utilized for these data Annotations for each position are stored in the INFO column

Final column = genotype of the individual at this genomic position https://samtools.github.io/hts-specs/VCFv4.2.pdf

VCF

FACT

ETL

•Chromosome •Position •ID •Reference Allele •Alternate Allele •Annotations • dbSNP RS ID • Gene Name • HGNC nomenclature • Protein Change • Consequence •Genotype

Block zipped VCF

#CHROM

POS

ID

1

752566

rs3094315

.NET C# ETL with SQLBulkCopy

REF ALT … G

A



•Chromosome •Position •ID •Reference Allele •Alternate Allele •Annotations • dbSNP RS ID • Gene Name • HGNC nomenclature • Protein Change • Consequence •Genotype

i2b2

INFO



SUBJECT_1

RSID=rs3094315;VariantEffect=FAM87B|NR_103536.1:n.-185G>A|p.=|upstream



1/1

PATIENT_NUM

CONCEPT_CD

INSTANCE_NUM

VALTYPE_CD

TVAL_CHAR

NVAL_NUM

OBSERVATION_BLOB

1

SO:0001483

338720

B

CHROM_1

752566

rs3094315,G_to_A,FAM87B,homozygous_ref,upstream,ID_rs3094315

I2b2 observation_fact table CONCEPT_CD • Two concepts with codes from Sequence Ontology: SNP (SO:0001483) or indel (SO:1000032) INSTANCE_NUM • The set of all SNPs for each patient will all have the same encounter number and date • The concept codes will be the same for all SNPs (SO:0001483) and for all indels (SO:1000032). • The set of all SNP facts will be enumerated in the instance_num field to make the primary key unique, as will the set of all indels. VALTYPE_CD • always equal “B” to indicate that data are stored in the observation_blob field and to trigger the full text search already existing in the i2b2 environment TVAL_CHAR • Chromosome NVAL_NUM • Position OBSERVATION_BLOB ,,,,

LARGESTRING search of OBSERVATION_BLOB CONCEPT_CD

INSTANCE_NUM

VALTYPE_CD

OBSERVATION_BLOB

SO:0001483

1

B

rs3094315,G_to_A,FAM87B,homozygous,upstream

SO:0001483

2

B

rs3131972,A_to_G,FAM87B,homozygous,upstream

SO:0001483

3

B

rs61770172,C_to_G,FAM87B,homozygous,exon

SO:0001483

4

B

rs3115860,C_to_A,FAM87B,homozygous,exon

SO:0001483

5

B

rs12567639,G_to_A,FAM87B,homozygous,downstream

SO:0001483

6

B

rs377214516,C_to_T,LINC01128,homozygous,upstream

SO:0001483

7

B

rs540936498,C_to_T,LINC00115,homozygous,exon

Ontology Formulation

Query Formulation in SQL dbSNP rs identifier select count(distinct patient_num) from observation_fact where contains(observation_blob, 'FAM148 AND (stop_loss OR missense)')

Gene Name select count(distinct patient_num) from observation_fact where contains(observation_blob, 'rs183605470 AND heterozygous')

Times to complete queries Seconds to Complete 25 Consequtive Queries 9 8 7

Seconds

6 5

One term SNP query Two term SNP query

4

Three term gene query

3 2 1 0

Queries 1 - 25

Distributed Star Schemas Christopher Herrick MBA

Hives Distributed in a Network

I2b2/BRISSKit

I2b2/tranSMART

Genomic Repository

visit_dimension patient_dimension PK

Patient_Num Birth_Date Death_Date Vital_Status_CD Age_Num* Gender_CD* Race_CD* Ethnicity_CD*

1

Biobank Repository

Concept_Path Concept_CD Name_Char

I2b2



PK

Encounter_Num Start_Date End_Date Active_Status_CD Location_CD*

Patient_Num

Concept_CD Observer_CD

∞ ∞

PK PK

Modifier_CD Instance_Num

∞ ∞ observer_dimension

End_Date ValType_CD TVal_Char NVal_Num ValueFlag_CD Observation_Blob

concept_dimension PK

1

observation_fact PK PK PK

∞ PK Encounter_Num ∞ PK Start_Date

PK

Observer_Path Observer_CD Name_Char



modifier_dimension PK

Modifier_Path Modifier_CD Name_Char

Clinical Data Warehouse

Text Notes Repositor y

I2b2

I2b2

Hives Distributed in a Network

I2b2/BRISSKit

I2b2/tranSMART

Genomic Repository

? Biobank Repository

visit_dimension patient_dimension PK

Patient_Num Birth_Date Death_Date Vital_Status_CD Age_Num* Gender_CD* Race_CD* Ethnicity_CD*

1

Concept_Path Concept_CD Name_Char

I2b2



PK

Encounter_Num Start_Date End_Date Active_Status_CD Location_CD*

Patient_Num

Concept_CD Observer_CD

∞ ∞

PK PK

Modifier_CD Instance_Num

∞ ∞ observer_dimension

End_Date ValType_CD TVal_Char NVal_Num ValueFlag_CD Observation_Blob

concept_dimension PK

1

observation_fact PK PK PK

∞ PK Encounter_Num ∞ PK Start_Date

PK

Observer_Path Observer_CD Name_Char



modifier_dimension PK

Modifier_Path Modifier_CD Name_Char

Clinical Data Warehouse

Text Notes Repositor y

I2b2

I2b2

A Patient Information Commons from Specialized i2b2 Hives Enterprise of Specialized Hives

I2b2 services on Text Processor

Genomic repositor y

I2b2/tranSMART

Text Notes repository

visit_dimension patient_dimension PK

Patient_Num Birth_Date Death_Date Vital_Status_CD Age_Num* Gender_CD* Race_CD* Ethnicity_CD*

Biobank repository

1



PK

I2b2

Concept_Path Concept_CD Name_Char

PK PK PK PK PK



PK

Concept_CD Observer_CD Start_Date Modifier_CD Instance_Num

Encounter_Num Start_Date End_Date Active_Status_CD Location_CD*

Patient_Num

End_Date ValType_CD TVal_Char NVal_Num ValueFlag_CD Observation_Blob

concept_dimension

1

observation_fact PK

∞ PK Encounter_Num

∞ ∞

∞ ∞ observer_dimension PK

Observer_Path Observer_CD Name_Char



modifier_dimension PK

Modifier_Path Modifier_CD Name_Char

Parent i2b2 Hive

I2b2

The Parent Hive Distributes Queries

Ontology

Patient Resolution P1 H1 H2 H3 Pa P2 H1 H2 ? Pb P3 H1 ? H3 Pc

MASTER QUERY

SUBQUERIES

Query

Distribution Engine

The Child Hives Return Queries

Index

SUBQUERY

P1 F2

P1

F1

P1

F2

P2

F1

P3

F2

P3

F1

Perform Query

P3 F2

?

Output Query

Ontology Extract Features

Extracted Features (i2b2 ObservationFact Table) Data Unstructured Big Data

Classifies New Features in Data

Output Patient Set Matrix

The Parent Hive Returns Results

Ontology

Patient Resolution P1 H1 H2 H3 Pa P2 H1 H2 ? Pb P3 H1 ? H3 Pc

Query

Distribution Engine

MASTER RESULT

SUBQUERY RESULTS

Common Sequence for Research Registries • 1) A researcher creates a registry of patients • 2) Data is collected on the patients • Abstracted from clinical chart as summary data and imaging • Questionnaires are given and/or Interviews with patients are performed

• 3) Data is analyzed and published • Opportunity is lost – many researchers wish to combine with fresh clinical data and data from other registries

Two Approaches for Connecting Data Enterprise Centric Data is shared with all researchers across the enterprise. This is similar to how the Research Patient Data Registry (RPDR) currently displays and shares data with investigators across all of Partners. Registries that become part of the enterprise centric view allow their data to be easily tied and queried with other enterprise wide data sources in the Big Data Commons. This mode requires researchers to have the proper consents in place for their data to be queried from an enterprise level. Access to the identified data would still be controlled by the individual registry groups

Registry Centric Data is imported into a registry for easier querying and analysis of patient cohorts; however, that data is not made readily available to the greater enterprise Registries can supplement their project specific data by connecting with enterprise available datasets that are part of the Big Data Commons network. Access to the enterprise sets allow investigators to fill in important data gaps they may have with their own data This mode is important if researchers have not collected the proper patient consents or, for other reasons, are not able to make their data available to the broader enterprise. Investigators would still be able to grant access to individual researchers who wish to collaborate.

An Enterprise Centered Data Network Genomic Data Genomic data collected through the Biobank lives in a separate repository, but is made available for connecting with clinical data. All patients within the Biobank are accessible

Imaging Repository Research Repository Broad repository of clinical data made available for research is the center point for all querying. Contains the entire Partners patient population.

DICOM Metadata is extracted from images downloaded from mi2b2. This may be supplemented by a limited amount of tags on all images given to us by Radiology group. Contains references to all patients from who we have imaging data

Notes & Reports Notes and reports on all patients are collected and put into a separate data repository that can be full text indexed. Specific security precautions are used to limit the PHI that can be queried directly

Project Registry Individual research groups may contribute their data or findings back to the Partners enterprise for querying and use by all researchers across the organization. Data is used for the greater good.

A Registry Centered Data Network Genomic Data

Project Registry

Genomic data collected through the Biobank lives in a separate repository, but is made available for connecting with clinical data. Only patients contained in the project registry can be queried within this network

The central access point for this type of data network is the project specific registry. All queries will be limited to the patients that are part of this project.

Notes & Reports Notes and reports on all patients are collected and put into a separate data repository that can be full text indexed. Specific security precautions are used to limit the PHI that can be queried directly Only patients contained in the project registry can be queried within this network

Imaging Repository DICOM Metadata is extracted from images downloaded from mi2b2. This may be supplemented by a limited amount of tags on all images given to us by Radiology group. Contains references to all patients from who we have imaging data. Only patients contained in the project registry can be queried within this network

Clinical Data Repository that contains most clinical data from legacy systems as well as Epic for all patients across the enterprise. Only patients contained in the project registry can be queried within this network

• BRISSKit is open source Biomedical Research Software as a Service Kit • Developed by University of Leicester • Allows spreadsheets of data to be auto imported into an i2b2 hive

40

Instantly Connected Databases in the Big Data Commons Enterprise

Imported Registry Department of

From Registry

From Biobank Portal

Adding a Registry to the Network

Data Collection Most project registries start out as a disparate source of data being collected by a project specific research groups. The data can be collected in a variety of formats, but often is contained in a small database (MS Access) or, more common, an Excel spreadsheet

i2b2 Project Through BRISSKIT, researchers can now take spreadsheets full of project specific data and upload them directly into an i2b2 project. The process automatically creates the i2b2 project, uploads the data into a database, and organizes the metadata into a hierarchy that can be used to form queries about the patient cohort inside the i2b2 query tool

Network Request

Network Wizard

Distributed Query

Once a group has uploaded their data into i2b2, they can choose whether to a) join a broader enterprise network or b) query other enterprise data within their i2b2 project. In both instances, the group communicates with the project admins for the other enterprise data sources to join the enterprise wide or registry specific network

New functionality allows each project admin to easily add their data repository into an existing data network. The wizard allows for the admin to not only decide what networks to join on a case by case basis, but also allows them the ability to specify user access for the project as well as which project specific parameters get included

Once each data source agrees (or not) to participate in the enterprise or registry centered network, metadata ontologies are synchronized and become visible in the i2b2 query tool. Users for that network can then start to build queries using the data from the disparate systems.

Services Perform Queries

Obtain Summary Tables

Link to Detailed Data

Flow of Healthcare Innovations Healthcare Big Data Commons fact s

Analytic EHR Data Representation

Imaging Repository fact s

fact s

Learning from Patient Features

Present Results in EMR SMART Apps

Machine Learning

Clinical Data

Patient Features from Big Data

Registries

fact s

Genomic Data

Non-EMRS Person

Find Normal MRI’s at All Ages 0-6 y/o

Number of patients who had a brain MRI scan at a particular age in months from 0 to 6 years (A) and in weeks from 0 to 4 months (B)

Determining a Normal Child’s MRI

Atlases provide a visual guide for Radiology Decision Support, such as determining Perinatal Hypoxic Ischemic Encephalopathy ADC map from 4 infants: Each statistically compared to age matched atlas yields visual guide to pathology Quantitative analysis tools + large data sets = Great insights for practicing doctors

Tribute to… ¢

I2b2/BD2K Core Team ¢ Issac Kohane ¢ Paul Avillach ¢ Griffin Weber ¢ Christopher Herrick ¢ Alyssa Goodson ¢ Lori Phillips ¢ Michael Mendis ¢ Victor Castro ¢ Janice Donahoe ¢ Nich Wattanasin ¢ Wayne Chan ¢ David Wang ¢ Mike Ollendieck ¢ Jeff Klann ¢ Andrew Cagan ¢ Bhaswati Ghosh ¢ Retta Metta

¢

¢

Biobank Team n Natalie Boutin n Scott Weiss n Vivian Gainer Innovation Team n Randy Gollub n Sandy Aronson n Heidi Rehm n Calum MacRea

Thank You

i2b2 AUG 2017-Loriv2_apgv2_cdh7.pdf

Aug 2, 2017 - Multiple Fact Tables. Lori Phillips MS. Whoops! There was a problem loading this page. Retrying... i2b2 AUG 2017-Loriv2_apgv2_cdh7.pdf.

10MB Sizes 5 Downloads 214 Views

Recommend Documents

i2b2 tS Membership overview dk.pdf
Discuss how members can support the foundation ... ETL with Business Intelligence Development Studio (BIDS) ... i2b2 tS Membership overview dk.pdf.

indemnizacionporaccidente.com-10-Aug ...
... accidentes laborales (1 %) baremo 2014 (1 %). 3 of 5. Page 3 of 5. indemnizacionporaccidente.com-10-Aug-d25e77548982ee559e6bec83732052dd.pdf.

AUG 24
Aug 19, 2015 - Enclosed are the call for nomination, guidelines for the search, ... All nominations to the Search for MIRO rig PAG-ASA and the ESP ..... conduct the final interview with the finalists either through video-conferencing or face-to-.

AUG 1 9 20U
DIVISION UNNUMBERED MEMORANDUM. To: 010, Asst. Schools Division Superintendent. Chief, CID and SGOD. Education Program Supervisors.

AUG 20 201 ..111
Aug 20, 2015 - UPLOADING OF LIS AND ONLINE ENCODING OF EOSY. 2014-2015 AND BOSY 2015-2016 FOR PRIVATE SCHOOLS. •. Date. August 20 ...

Aug cover.qxd - CiteSeerX
Why call for a new field now? ... encounter in the field, the laboratory, or the conservation facility. ..... theories and principles advanced within the theoretical.

AUG 19 2015 Accounts
Aug 19, 2015 - following email address: [email protected] or .... Enclosure.? is the proposed template for the complete version of research ...

LOT_WISE_Rate_28 Aug..pdf
Page 1 of 1. Nahee Aluminum Composite Panel Ltd. HOUSE - 26, ROAD - 03, BLOCK - I, BANANI, DHAKA – 1213, BANGLADESH. PHONE: +880-2-9871137; ...

Aug 2015.pdf
Planning to ask people what their experience of Solihull's Safeguarding was and ... person centred approach to working with risk can support risk enablement.

Aug-2014.pdf
Whoops! There was a problem previewing this document. Retrying... Download. Connect more apps... Aug-2014.pdf. Aug-2014.pdf. Open. Extract. Open with.

AUG 2016 -Final.pdf
Petitioner, Through Mr. Rajiv K. Garg, Advocate. versus. UOI & ORS. ..... Respondent Through Ms. Abha Malhotra, Advocate for UOI. Mr. Ashok Panigrahi and Mr. Surajit. Bhaduri, Advocates for LIC. CORAM: HON'BLE MR. JUSTICE SANJIV KHANNA. HON'BLE MS. J

Aug 7.pdf
An open house will be held on Saturday, August 20th, at the. American ... Wednesday August 10th St. Lawrence 8:00am Mass St. Ignatius Walter & Faye Fuchtman ... Marlene Wilmes, Charley Brandt & Mary Lou West. Whoops! There was a problem loading this

Aug 2013 min.pdf
Board members present were Kay Voorhees, Chuck Dunlop, Gary Spears, Brad Heide,. Rita Boydston, Wade Teagarden, and Brad Aust. Superintendent – Chris ...

Aug 2016 High.pdf
NEW ADULT LUNCH PRICES: LPSS Employee $4.00. Visitor $4.50. Page 2 of 2. Aug 2016 High.pdf. Aug 2016 High.pdf. Open. Extract. Open with. Sign In.

Aug 11.pdf
Alvin, Zoe, Brooklyn, William, Myka & Skye Rm 22, Anna-Sophia Rm 19, Albert Rm 21,. Nicholas Rm 18, Ashlee Rm 5. Ka pai everyone! CONGRATULATIONS ...

Using the NAACCR Tumor Registry in i2b2 with HERON ETL (1).pdf ...
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. Using the ...

HR CSR-AUG 2015 WEBSITE FORM 14 AUG 2015 CSR ADVT.pdf ...
Work/Economics/Science/Public Administration/ B.E/MBA from. a recognized University in India or abroad or PGDBM from any. Indian Institute of Management in India or reputed institute from. abroad or B.Tech from any Indian Institute of Technology. /Na

LEH-TG002 AUG-OCT.pdf
สตอคพาเลซ Stok Palace ซงึ่ เมอื่ ก่อนเคยเป็นพระราชวัง แต่ปัจจุบันเปิดเป็นพิพิธภัณฑเ์ก็บสะสมของ

Aug 2016 Lunch Menu.pdf
Sticks (AHS-Monterey Jack Fish. Sandwich) with Hushpuppies,. Romaine Salad, Pinto Beans,. Mashed Potatoes, Green Beans,. Carrot Cole Slaw, and Cantaloupe or. Watermelon chunks - Milk. Sept. 2 Pepperoni Pizza OR. Chicken Nuggets w/ Texas Toast. with R