SlideShare uma empresa Scribd logo
1 de 15
Baixar para ler offline
UMLS TO ICD10
MAPPING.(OR: GIVEN A SET OF UMLS CODES HOW TO MAP IT TO A ICD10 CODE?)
PRESENTED BY
PRAMOD C KONERU , WEB 3.0 - DEMO
Friday, April 26, 13
WHAT!!
WHY?
HOW?
Friday, April 26, 13
WHAT!!ARE THESE CODES
UMLS	
  (Unified	
  Medical	
  language	
  system),	
  is	
  a	
  set	
  of	
  files	
  
and	
  so9ware	
  that	
  brings	
  together	
  many	
  health	
  and	
  
biomedical	
  vocabularies.
	
  
ICD10	
  (InternaEonal	
  ClassificaEon	
  of	
  Diseases),	
  are	
  
designed	
  to	
  classify	
  healthcare,	
  providing	
  a	
  system	
  of	
  
diagnosEc	
  codes	
  for	
  classifying	
  diseases,	
  including	
  nuanced	
  
classificaEon	
  of	
  wide	
  variety	
  of	
  signs,	
  symptoms,	
  abnormal	
  
findings,	
  complaints	
  etc	
  etc.,
Friday, April 26, 13
WHY?
DO WE NEED ICD10
1.	
  In	
  the	
  healthcare	
  industry	
  these	
  codes	
  are	
  vital	
  
for	
  billing	
  and	
  health	
  insurance	
  reimbursement,	
  
automated	
  decision	
  support	
  and	
  government	
  
sta:s:cal	
  reports	
  on	
  morbidity	
  and	
  mortality.	
  	
  	
  	
  	
  
	
  
2.	
  It	
  is	
  mandatory	
  for	
  healthcare	
  services	
  to	
  
encode	
  pa:ent	
  diagnosis	
  informa:on	
  in	
  these	
  
codes	
  	
  	
  	
  	
  
	
  
3.	
  Deadline
	
  	
  	
  	
  	
  
Friday, April 26, 13
HOW??
SYSTEM TO ANNOTATE EMR
AGAINST
UMLS CODES.
ONTOLOGY OF UMLS
HIERARCHY.
CAN WE BUILD OUR APPLICATION ON TOP OF THESE?
Friday, April 26, 13
ARCHITECTURE
EMR DOCUMENT CONVERTED INTO
TRIPLES
WITH CHIEF COMPLAINT
EACH	
  CLASS	
  IS	
  EMBEDDED	
  WITH	
  ITS	
  SPARQL	
  QUERY
PREFIX icd: <http://www.knoesis.org/icd10mapping/>
PREFIX ezdi: <http://www.ezdi.us/cardio.owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
ASK FROM <http://knoesis.wright.edu/umls2icd10/sample>
WHERE
{
{{SELECT ?x FROM <http://knoesis.wright.edu/healthcare> WHERE { ?x rdfs:subClassOf ezdi:C0259752. }}
{icd:patient icd:suffering_with ?x.}}
UNION
{icd:patient icd:suffering_with ezdi:C0259752.}
}
ALGO
ASK QUERY
TRUE
GET SUBCLASSES
Friday, April 26, 13
E08
E08.1
E08.4
E08.2
E08.3
E08.5
E08.6
E08.00
E08.01
PRE-PROCESSING
ICD10 CODES
BUILDING THE
HIERARCHAL ONTOLOGY
Friday, April 26, 13
hypertension C06
. .
diabetes	
  mellitus	
  
mellitus
E08
chemical	
  induced	
  
diabetes
E09
type	
  1	
  diabetes E10
. .
. .
INDEXINPUT FILE OF A
PATIENT
CHIEF COMPLAINT:
diabetes mellitus
PREFIX icd: <http://www.knoesis.org/ICD10Mapping/>
PREFIX ezdi: <http://www.ezdi.us/cardio.owl#>
icd:patient1 icd:suffering_with ezdi:C0259752;
ezdi:C1720567.
icd:patient1 icd:suffering_with ezdi:C0034556;
ezdi:C0045235.
ONTOLOGY
THE
WALKTHROUGH
Friday, April 26, 13
E08
E08.0
CUI CODES FROM UMLS
hypersmolarity:C0009421
coma:C0009421
icd:patient1 icd:suffering_with ezdi:C0259752;
ezdi:C1720567. (CUI CODE of hypoglycomic_coma_diabetes_mellitus)
	
  	
  	
  PREFIX	
  icd:	
  <h]p://www.knoesis.org/icd10mapping/>
	
  	
  	
  PREFIX	
  ezdi:	
  <h]p://www.ezdi.us/cardio.owl#>
	
  	
  	
  PREFIX	
  rdfs:	
  <h]p://www.w3.org/2000/01/rdf-­‐schema#>
	
  	
  	
  ASK	
  FROM	
  <h]p://knoesis.wright.edu/umls2icd10/sample>
	
  	
  	
  WHERE
	
  	
  	
  icd:paEent	
  icd:suffering_with	
  ezdi:C0259752.
	
  	
  	
  }	
  
SATISFIED
	
  	
  	
  PREFIX	
  icd:	
  <h]p://www.knoesis.org/icd10mapping/>
	
  	
  	
  PREFIX	
  ezdi:	
  <h]p://www.ezdi.us/cardio.owl#>
	
  	
  	
  PREFIX	
  rdfs:	
  <h]p://www.w3.org/2000/01/rdf-­‐schema#>
	
  	
  	
  ASK	
  FROM	
  <h]p://knoesis.wright.edu/umls2icd10/sample>
	
  	
  	
  WHERE
	
  	
  	
  icd:paEent	
  icd:suffering_with	
  ezdi:C0009421.
	
  	
  	
  }	
  
E08.00
E08.01
NOT - SATISFIED
WHY??
Friday, April 26, 13
E08.00
E08.01
BECAUSE OF THIS
HIERARCHY
PREFIX	
  icd:	
  <h]p://www.knoesis.org/icd10mapping/>
PREFIX	
  ezdi:	
  <h]p://www.ezdi.us/cardio.owl#>
PREFIX	
  rdfs:	
  <h]p://www.w3.org/2000/01/rdf-­‐schema#>
ASK	
  FROM	
  <h]p://knoesis.wright.edu/umls2icd10/sample>
WHERE
{
	
  	
  
	
  	
  {icd:paEent	
  icd:suffering_with	
  ezdi:C0259752.}
}
{{SELECT	
  ?x	
  FROM	
  <h]p://knoesis.wright.edu/healthcare>	
  WHERE	
  
{	
  ?x	
  rdfs:subClassOf	
  ezdi:C0259752	
  OPTION(TRANSITIVE).	
  }}
	
  	
  {icd:paEent	
  icd:suffering_with	
  ?x.}}
	
  	
  UNION
SATISFIED
icd:patient1 icd:suffering_with ezdi:C0259752;
ezdi:C1720567. (CUI CODE of hypoglycomic_coma_diabetes_mellitus)
Friday, April 26, 13
HENCE THE CODE
E08.01
Friday, April 26, 13
DEMO!!http://localhost:8080/UMLSToICD10
Friday, April 26, 13
THINGS THAT I HAVE
LEARNED
ONTOLOGY BUILDING,	
  in-­‐fact	
  I	
  have	
  built	
  a	
  small	
  
ontology	
  which	
  holds	
  the	
  the	
  disease	
  hierarchy.✓	
  	
  
ADVANCED SPARQL,	
  which	
  includes	
  the	
  use	
  of	
  SPARQL	
  
inferencing	
  and	
  sub	
  querying.
✓	
  	
  
Friday, April 26, 13
THANKS.THAT WAS FUN, IS’NT IT??
Friday, April 26, 13
Credits:1.Sujan Udayanga
2.Rajesh Kinkabwala
3.Jeremy fuska -- Theme
Friday, April 26, 13

Mais conteúdo relacionado

Mais procurados

Logistics management information system(lmis)
Logistics management information system(lmis)Logistics management information system(lmis)
Logistics management information system(lmis)Roshan Thapa
 
Use of mobile device in health care setting
Use of mobile device in health care settingUse of mobile device in health care setting
Use of mobile device in health care settingDr. Samir Sawli
 
Moderator analysis in meta-analysis
Moderator analysis in meta-analysisModerator analysis in meta-analysis
Moderator analysis in meta-analysisRizwan S A
 
National Digital Health Mission.pptx
National Digital Health Mission.pptxNational Digital Health Mission.pptx
National Digital Health Mission.pptxkratitiwari4
 
Revised Telemedicine Guidelines
Revised Telemedicine GuidelinesRevised Telemedicine Guidelines
Revised Telemedicine GuidelinesTiE Bangalore
 
Clinical Services and Technology
Clinical Services and TechnologyClinical Services and Technology
Clinical Services and Technologyaccenture
 
Declining Sex Ratio in India
Declining Sex Ratio in IndiaDeclining Sex Ratio in India
Declining Sex Ratio in IndiaChahat Raj Kapoor
 
Cross sectional study
Cross sectional studyCross sectional study
Cross sectional studyAdugnagirma
 
Precise Patient Registries: The Foundation for Clinical Research & Population...
Precise Patient Registries: The Foundation for Clinical Research & Population...Precise Patient Registries: The Foundation for Clinical Research & Population...
Precise Patient Registries: The Foundation for Clinical Research & Population...Health Catalyst
 
Healthcare information technology
Healthcare information technologyHealthcare information technology
Healthcare information technologyDr.Vijay Talla
 
Ayushman Bharat Digital Mission
Ayushman Bharat Digital MissionAyushman Bharat Digital Mission
Ayushman Bharat Digital MissionVinothini Jayaraj
 
Coordination of Benefits and its implications to Health Plans
Coordination of Benefits and its implications to Health PlansCoordination of Benefits and its implications to Health Plans
Coordination of Benefits and its implications to Health PlansCitiusTech
 
Application of computers in Epidemiology.pptx
Application of computers in Epidemiology.pptxApplication of computers in Epidemiology.pptx
Application of computers in Epidemiology.pptxiqbal606601
 
Association and causation
Association and causationAssociation and causation
Association and causationdrravimr
 
Dependenct ratio, total fertality rate, prevelance
Dependenct ratio, total fertality rate, prevelanceDependenct ratio, total fertality rate, prevelance
Dependenct ratio, total fertality rate, prevelanceIrfan Hussain
 
District level household survey 4
District level household survey 4District level household survey 4
District level household survey 4Dr Nena R
 

Mais procurados (20)

Kobo Collect Workshop
Kobo Collect WorkshopKobo Collect Workshop
Kobo Collect Workshop
 
Logistics management information system(lmis)
Logistics management information system(lmis)Logistics management information system(lmis)
Logistics management information system(lmis)
 
Use of mobile device in health care setting
Use of mobile device in health care settingUse of mobile device in health care setting
Use of mobile device in health care setting
 
Digital health
Digital healthDigital health
Digital health
 
Dhis2 overview
Dhis2 overviewDhis2 overview
Dhis2 overview
 
Moderator analysis in meta-analysis
Moderator analysis in meta-analysisModerator analysis in meta-analysis
Moderator analysis in meta-analysis
 
National Digital Health Mission.pptx
National Digital Health Mission.pptxNational Digital Health Mission.pptx
National Digital Health Mission.pptx
 
Revised Telemedicine Guidelines
Revised Telemedicine GuidelinesRevised Telemedicine Guidelines
Revised Telemedicine Guidelines
 
Clinical Services and Technology
Clinical Services and TechnologyClinical Services and Technology
Clinical Services and Technology
 
Declining Sex Ratio in India
Declining Sex Ratio in IndiaDeclining Sex Ratio in India
Declining Sex Ratio in India
 
Cross sectional study
Cross sectional studyCross sectional study
Cross sectional study
 
Rabies.pptx
Rabies.pptxRabies.pptx
Rabies.pptx
 
Precise Patient Registries: The Foundation for Clinical Research & Population...
Precise Patient Registries: The Foundation for Clinical Research & Population...Precise Patient Registries: The Foundation for Clinical Research & Population...
Precise Patient Registries: The Foundation for Clinical Research & Population...
 
Healthcare information technology
Healthcare information technologyHealthcare information technology
Healthcare information technology
 
Ayushman Bharat Digital Mission
Ayushman Bharat Digital MissionAyushman Bharat Digital Mission
Ayushman Bharat Digital Mission
 
Coordination of Benefits and its implications to Health Plans
Coordination of Benefits and its implications to Health PlansCoordination of Benefits and its implications to Health Plans
Coordination of Benefits and its implications to Health Plans
 
Application of computers in Epidemiology.pptx
Application of computers in Epidemiology.pptxApplication of computers in Epidemiology.pptx
Application of computers in Epidemiology.pptx
 
Association and causation
Association and causationAssociation and causation
Association and causation
 
Dependenct ratio, total fertality rate, prevelance
Dependenct ratio, total fertality rate, prevelanceDependenct ratio, total fertality rate, prevelance
Dependenct ratio, total fertality rate, prevelance
 
District level household survey 4
District level household survey 4District level household survey 4
District level household survey 4
 

Destaque

Linking Data with sameAs: Challenges and Solutions - Workshop
Linking Data with sameAs: Challenges and Solutions - WorkshopLinking Data with sameAs: Challenges and Solutions - Workshop
Linking Data with sameAs: Challenges and Solutions - WorkshopAdrian Stevenson
 
UMLS as a Resource for Virtual Data Warehouse Infrastructure KEY
UMLS as a Resource for Virtual Data Warehouse Infrastructure KEYUMLS as a Resource for Virtual Data Warehouse Infrastructure KEY
UMLS as a Resource for Virtual Data Warehouse Infrastructure KEYHMO Research Network
 
Data Management for Scientists: Workshop at Ocean Sciences 2012
Data Management for Scientists: Workshop at Ocean Sciences 2012Data Management for Scientists: Workshop at Ocean Sciences 2012
Data Management for Scientists: Workshop at Ocean Sciences 2012Carly Strasser
 
Unified Medical Language System & MetaMap
Unified Medical Language System & MetaMapUnified Medical Language System & MetaMap
Unified Medical Language System & MetaMapOsama Jomaa
 
Infographic - Cloud Monitoring Basics Cheat Sheet
Infographic - Cloud Monitoring Basics Cheat SheetInfographic - Cloud Monitoring Basics Cheat Sheet
Infographic - Cloud Monitoring Basics Cheat SheetCopperEgg
 
Aboriginal and Non-Aboriginal Partnerships: Building Blocks for Sustainable C...
Aboriginal and Non-Aboriginal Partnerships: Building Blocks for Sustainable C...Aboriginal and Non-Aboriginal Partnerships: Building Blocks for Sustainable C...
Aboriginal and Non-Aboriginal Partnerships: Building Blocks for Sustainable C...Wayne Dunn
 
Lifestyle1
Lifestyle1Lifestyle1
Lifestyle1Les Davy
 
Decisão de Celso de Mello de manter Moreira Franco
Decisão de Celso de Mello de manter Moreira FrancoDecisão de Celso de Mello de manter Moreira Franco
Decisão de Celso de Mello de manter Moreira FrancoMiguel Rosario
 
Teatro de la sensacion danza moderna infantil-jornadas de puertas abiertas
Teatro de la sensacion danza moderna infantil-jornadas de puertas abiertasTeatro de la sensacion danza moderna infantil-jornadas de puertas abiertas
Teatro de la sensacion danza moderna infantil-jornadas de puertas abiertasMiguel Muñoz de Morales
 
Explain direxson academy_enq_201312
Explain direxson academy_enq_201312Explain direxson academy_enq_201312
Explain direxson academy_enq_201312博三 太田
 
Программа женское здоровье
Программа женское здоровье Программа женское здоровье
Программа женское здоровье Елена Шальнова
 
SAP FICO COMPLETE PACKAGE
SAP FICO COMPLETE PACKAGESAP FICO COMPLETE PACKAGE
SAP FICO COMPLETE PACKAGEMani Ganesan
 
The Film Industry
The Film IndustryThe Film Industry
The Film IndustryNShuttle
 

Destaque (20)

Linking Data with sameAs: Challenges and Solutions - Workshop
Linking Data with sameAs: Challenges and Solutions - WorkshopLinking Data with sameAs: Challenges and Solutions - Workshop
Linking Data with sameAs: Challenges and Solutions - Workshop
 
UMLS as a Resource for Virtual Data Warehouse Infrastructure KEY
UMLS as a Resource for Virtual Data Warehouse Infrastructure KEYUMLS as a Resource for Virtual Data Warehouse Infrastructure KEY
UMLS as a Resource for Virtual Data Warehouse Infrastructure KEY
 
121129 umls yes
121129 umls yes121129 umls yes
121129 umls yes
 
Data Management for Scientists: Workshop at Ocean Sciences 2012
Data Management for Scientists: Workshop at Ocean Sciences 2012Data Management for Scientists: Workshop at Ocean Sciences 2012
Data Management for Scientists: Workshop at Ocean Sciences 2012
 
Unified Medical Language System & MetaMap
Unified Medical Language System & MetaMapUnified Medical Language System & MetaMap
Unified Medical Language System & MetaMap
 
Infographic - Cloud Monitoring Basics Cheat Sheet
Infographic - Cloud Monitoring Basics Cheat SheetInfographic - Cloud Monitoring Basics Cheat Sheet
Infographic - Cloud Monitoring Basics Cheat Sheet
 
Aboriginal and Non-Aboriginal Partnerships: Building Blocks for Sustainable C...
Aboriginal and Non-Aboriginal Partnerships: Building Blocks for Sustainable C...Aboriginal and Non-Aboriginal Partnerships: Building Blocks for Sustainable C...
Aboriginal and Non-Aboriginal Partnerships: Building Blocks for Sustainable C...
 
Lifestyle1
Lifestyle1Lifestyle1
Lifestyle1
 
Decisão de Celso de Mello de manter Moreira Franco
Decisão de Celso de Mello de manter Moreira FrancoDecisão de Celso de Mello de manter Moreira Franco
Decisão de Celso de Mello de manter Moreira Franco
 
それはおかしいでしょ→長野市長議案説明
それはおかしいでしょ→長野市長議案説明それはおかしいでしょ→長野市長議案説明
それはおかしいでしょ→長野市長議案説明
 
Клубная встреча 13112016
Клубная встреча 13112016Клубная встреча 13112016
Клубная встреча 13112016
 
Destroying property
Destroying propertyDestroying property
Destroying property
 
Privatsparande
PrivatsparandePrivatsparande
Privatsparande
 
Teatro de la sensacion danza moderna infantil-jornadas de puertas abiertas
Teatro de la sensacion danza moderna infantil-jornadas de puertas abiertasTeatro de la sensacion danza moderna infantil-jornadas de puertas abiertas
Teatro de la sensacion danza moderna infantil-jornadas de puertas abiertas
 
Explain direxson academy_enq_201312
Explain direxson academy_enq_201312Explain direxson academy_enq_201312
Explain direxson academy_enq_201312
 
Bella
BellaBella
Bella
 
Программа женское здоровье
Программа женское здоровье Программа женское здоровье
Программа женское здоровье
 
SAP FICO COMPLETE PACKAGE
SAP FICO COMPLETE PACKAGESAP FICO COMPLETE PACKAGE
SAP FICO COMPLETE PACKAGE
 
The Film Industry
The Film IndustryThe Film Industry
The Film Industry
 
Notam 01 jun 15
Notam 01 jun 15Notam 01 jun 15
Notam 01 jun 15
 

Semelhante a UMLS TO ICD10 MAPPING

Common ICD-10 Coding Errors that Medical Practices Should Take Care to Avoid
Common ICD-10 Coding Errors that Medical Practices Should Take Care to AvoidCommon ICD-10 Coding Errors that Medical Practices Should Take Care to Avoid
Common ICD-10 Coding Errors that Medical Practices Should Take Care to AvoidOutsource Strategies International
 
Introduction to ICD /health care code set
Introduction to ICD /health care code set Introduction to ICD /health care code set
Introduction to ICD /health care code set naolgonfa
 
eBook_Definitive_Guide_to_Medical_Coding-120915
eBook_Definitive_Guide_to_Medical_Coding-120915eBook_Definitive_Guide_to_Medical_Coding-120915
eBook_Definitive_Guide_to_Medical_Coding-120915Ben Castleberry
 
medical coding basic
medical coding basicmedical coding basic
medical coding basicasif kuniyil
 
ICD-10 Transition Update: What Health Lawyers Need to Know
ICD-10 Transition Update: What Health Lawyers Need to KnowICD-10 Transition Update: What Health Lawyers Need to Know
ICD-10 Transition Update: What Health Lawyers Need to KnowPYA, P.C.
 
The ICD-10 Change-Over: Getting Started
The ICD-10 Change-Over: Getting StartedThe ICD-10 Change-Over: Getting Started
The ICD-10 Change-Over: Getting StartedGreenway Health
 
Overview of ICD-11.pdf
Overview of ICD-11.pdfOverview of ICD-11.pdf
Overview of ICD-11.pdfAGSHealth1
 
ICD-10 - Key Concepts for Radiology Practices
ICD-10 - Key Concepts for Radiology PracticesICD-10 - Key Concepts for Radiology Practices
ICD-10 - Key Concepts for Radiology PracticesHAPUSA
 
Preparing for the Conclusion of ICD-10 Grace Period
Preparing for the Conclusion of ICD-10 Grace Period Preparing for the Conclusion of ICD-10 Grace Period
Preparing for the Conclusion of ICD-10 Grace Period CureMD
 
2nd Report - Major Diagnostic Categories, 2014.pdf
2nd Report - Major Diagnostic Categories, 2014.pdf2nd Report - Major Diagnostic Categories, 2014.pdf
2nd Report - Major Diagnostic Categories, 2014.pdfmaa77
 
xCaldwellCD10 FINAL Term Paper
xCaldwellCD10 FINAL Term PaperxCaldwellCD10 FINAL Term Paper
xCaldwellCD10 FINAL Term PaperJessica Caldwell
 
ICD-10 Conventions and Guidelines
ICD-10 Conventions and GuidelinesICD-10 Conventions and Guidelines
ICD-10 Conventions and GuidelinesCureMD
 
Introduction to ICD-10 4.23.15.ppt
Introduction to ICD-10 4.23.15.pptIntroduction to ICD-10 4.23.15.ppt
Introduction to ICD-10 4.23.15.pptshafiknick
 
Introduction to ICD-10 4.23.15.ppt
Introduction to ICD-10 4.23.15.pptIntroduction to ICD-10 4.23.15.ppt
Introduction to ICD-10 4.23.15.pptIPEducation
 

Semelhante a UMLS TO ICD10 MAPPING (20)

Common ICD-10 Coding Errors that Medical Practices Should Take Care to Avoid
Common ICD-10 Coding Errors that Medical Practices Should Take Care to AvoidCommon ICD-10 Coding Errors that Medical Practices Should Take Care to Avoid
Common ICD-10 Coding Errors that Medical Practices Should Take Care to Avoid
 
Dr.abdelrahman training icd10 intro
Dr.abdelrahman training icd10 introDr.abdelrahman training icd10 intro
Dr.abdelrahman training icd10 intro
 
Icd updt
Icd updtIcd updt
Icd updt
 
Introduction to ICD /health care code set
Introduction to ICD /health care code set Introduction to ICD /health care code set
Introduction to ICD /health care code set
 
eBook_Definitive_Guide_to_Medical_Coding-120915
eBook_Definitive_Guide_to_Medical_Coding-120915eBook_Definitive_Guide_to_Medical_Coding-120915
eBook_Definitive_Guide_to_Medical_Coding-120915
 
medical coding basic
medical coding basicmedical coding basic
medical coding basic
 
ICD-10 Transition Update: What Health Lawyers Need to Know
ICD-10 Transition Update: What Health Lawyers Need to KnowICD-10 Transition Update: What Health Lawyers Need to Know
ICD-10 Transition Update: What Health Lawyers Need to Know
 
The ICD-10 Change-Over: Getting Started
The ICD-10 Change-Over: Getting StartedThe ICD-10 Change-Over: Getting Started
The ICD-10 Change-Over: Getting Started
 
Overview of ICD-11.pdf
Overview of ICD-11.pdfOverview of ICD-11.pdf
Overview of ICD-11.pdf
 
ICD-10 - Key Concepts for Radiology Practices
ICD-10 - Key Concepts for Radiology PracticesICD-10 - Key Concepts for Radiology Practices
ICD-10 - Key Concepts for Radiology Practices
 
Medical insurance codes
Medical insurance codesMedical insurance codes
Medical insurance codes
 
Preparing for the Conclusion of ICD-10 Grace Period
Preparing for the Conclusion of ICD-10 Grace Period Preparing for the Conclusion of ICD-10 Grace Period
Preparing for the Conclusion of ICD-10 Grace Period
 
Icd 9-cm-2007
Icd 9-cm-2007Icd 9-cm-2007
Icd 9-cm-2007
 
2nd Report - Major Diagnostic Categories, 2014.pdf
2nd Report - Major Diagnostic Categories, 2014.pdf2nd Report - Major Diagnostic Categories, 2014.pdf
2nd Report - Major Diagnostic Categories, 2014.pdf
 
xCaldwellCD10 FINAL Term Paper
xCaldwellCD10 FINAL Term PaperxCaldwellCD10 FINAL Term Paper
xCaldwellCD10 FINAL Term Paper
 
icd 10-white_paper
icd 10-white_papericd 10-white_paper
icd 10-white_paper
 
ICD-10 Conventions and Guidelines
ICD-10 Conventions and GuidelinesICD-10 Conventions and Guidelines
ICD-10 Conventions and Guidelines
 
ICD-10 FAQs’
ICD-10 FAQs’ICD-10 FAQs’
ICD-10 FAQs’
 
Introduction to ICD-10 4.23.15.ppt
Introduction to ICD-10 4.23.15.pptIntroduction to ICD-10 4.23.15.ppt
Introduction to ICD-10 4.23.15.ppt
 
Introduction to ICD-10 4.23.15.ppt
Introduction to ICD-10 4.23.15.pptIntroduction to ICD-10 4.23.15.ppt
Introduction to ICD-10 4.23.15.ppt
 

Último

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 

Último (20)

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 

UMLS TO ICD10 MAPPING

  • 1. UMLS TO ICD10 MAPPING.(OR: GIVEN A SET OF UMLS CODES HOW TO MAP IT TO A ICD10 CODE?) PRESENTED BY PRAMOD C KONERU , WEB 3.0 - DEMO Friday, April 26, 13
  • 3. WHAT!!ARE THESE CODES UMLS  (Unified  Medical  language  system),  is  a  set  of  files   and  so9ware  that  brings  together  many  health  and   biomedical  vocabularies.   ICD10  (InternaEonal  ClassificaEon  of  Diseases),  are   designed  to  classify  healthcare,  providing  a  system  of   diagnosEc  codes  for  classifying  diseases,  including  nuanced   classificaEon  of  wide  variety  of  signs,  symptoms,  abnormal   findings,  complaints  etc  etc., Friday, April 26, 13
  • 4. WHY? DO WE NEED ICD10 1.  In  the  healthcare  industry  these  codes  are  vital   for  billing  and  health  insurance  reimbursement,   automated  decision  support  and  government   sta:s:cal  reports  on  morbidity  and  mortality.             2.  It  is  mandatory  for  healthcare  services  to   encode  pa:ent  diagnosis  informa:on  in  these   codes             3.  Deadline           Friday, April 26, 13
  • 5. HOW?? SYSTEM TO ANNOTATE EMR AGAINST UMLS CODES. ONTOLOGY OF UMLS HIERARCHY. CAN WE BUILD OUR APPLICATION ON TOP OF THESE? Friday, April 26, 13
  • 6. ARCHITECTURE EMR DOCUMENT CONVERTED INTO TRIPLES WITH CHIEF COMPLAINT EACH  CLASS  IS  EMBEDDED  WITH  ITS  SPARQL  QUERY PREFIX icd: <http://www.knoesis.org/icd10mapping/> PREFIX ezdi: <http://www.ezdi.us/cardio.owl#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> ASK FROM <http://knoesis.wright.edu/umls2icd10/sample> WHERE { {{SELECT ?x FROM <http://knoesis.wright.edu/healthcare> WHERE { ?x rdfs:subClassOf ezdi:C0259752. }} {icd:patient icd:suffering_with ?x.}} UNION {icd:patient icd:suffering_with ezdi:C0259752.} } ALGO ASK QUERY TRUE GET SUBCLASSES Friday, April 26, 13
  • 8. hypertension C06 . . diabetes  mellitus   mellitus E08 chemical  induced   diabetes E09 type  1  diabetes E10 . . . . INDEXINPUT FILE OF A PATIENT CHIEF COMPLAINT: diabetes mellitus PREFIX icd: <http://www.knoesis.org/ICD10Mapping/> PREFIX ezdi: <http://www.ezdi.us/cardio.owl#> icd:patient1 icd:suffering_with ezdi:C0259752; ezdi:C1720567. icd:patient1 icd:suffering_with ezdi:C0034556; ezdi:C0045235. ONTOLOGY THE WALKTHROUGH Friday, April 26, 13
  • 9. E08 E08.0 CUI CODES FROM UMLS hypersmolarity:C0009421 coma:C0009421 icd:patient1 icd:suffering_with ezdi:C0259752; ezdi:C1720567. (CUI CODE of hypoglycomic_coma_diabetes_mellitus)      PREFIX  icd:  <h]p://www.knoesis.org/icd10mapping/>      PREFIX  ezdi:  <h]p://www.ezdi.us/cardio.owl#>      PREFIX  rdfs:  <h]p://www.w3.org/2000/01/rdf-­‐schema#>      ASK  FROM  <h]p://knoesis.wright.edu/umls2icd10/sample>      WHERE      icd:paEent  icd:suffering_with  ezdi:C0259752.      }   SATISFIED      PREFIX  icd:  <h]p://www.knoesis.org/icd10mapping/>      PREFIX  ezdi:  <h]p://www.ezdi.us/cardio.owl#>      PREFIX  rdfs:  <h]p://www.w3.org/2000/01/rdf-­‐schema#>      ASK  FROM  <h]p://knoesis.wright.edu/umls2icd10/sample>      WHERE      icd:paEent  icd:suffering_with  ezdi:C0009421.      }   E08.00 E08.01 NOT - SATISFIED WHY?? Friday, April 26, 13
  • 10. E08.00 E08.01 BECAUSE OF THIS HIERARCHY PREFIX  icd:  <h]p://www.knoesis.org/icd10mapping/> PREFIX  ezdi:  <h]p://www.ezdi.us/cardio.owl#> PREFIX  rdfs:  <h]p://www.w3.org/2000/01/rdf-­‐schema#> ASK  FROM  <h]p://knoesis.wright.edu/umls2icd10/sample> WHERE {        {icd:paEent  icd:suffering_with  ezdi:C0259752.} } {{SELECT  ?x  FROM  <h]p://knoesis.wright.edu/healthcare>  WHERE   {  ?x  rdfs:subClassOf  ezdi:C0259752  OPTION(TRANSITIVE).  }}    {icd:paEent  icd:suffering_with  ?x.}}    UNION SATISFIED icd:patient1 icd:suffering_with ezdi:C0259752; ezdi:C1720567. (CUI CODE of hypoglycomic_coma_diabetes_mellitus) Friday, April 26, 13
  • 13. THINGS THAT I HAVE LEARNED ONTOLOGY BUILDING,  in-­‐fact  I  have  built  a  small   ontology  which  holds  the  the  disease  hierarchy.✓     ADVANCED SPARQL,  which  includes  the  use  of  SPARQL   inferencing  and  sub  querying. ✓     Friday, April 26, 13
  • 14. THANKS.THAT WAS FUN, IS’NT IT?? Friday, April 26, 13
  • 15. Credits:1.Sujan Udayanga 2.Rajesh Kinkabwala 3.Jeremy fuska -- Theme Friday, April 26, 13