ORC: an Ontology Reasoning Component for Diabetes

Size: px
Start display at page:

Download "ORC: an Ontology Reasoning Component for Diabetes"

Transcription

1 ORC: an Ontology Reasoning Component for Diabetes Özgür Kafalı 1, Michal Sindlar 2, Tom van der Weide 2 and Kostas Stathis 1 1 Department of Computer Science Royal Holloway, University of London, UK {ozgur.kafali,kostas.stathis}@rhul.ac.uk 2 Portavita B.V., Netherlands {m.sindlar,t.van.der.weide}@portavita.eu August 3, 2013 Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

2 Outline 1 Introduction 2 COMMODITY 12 personal health system 3 ORC for semantic reasoning 4 Illustrative Example 5 Conclusions Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

3 Introduction Motivation Availability of medical data greatly increased data from different information sources and in different formats mediator-based integration approaches for data translation Build on the existing COMMODITY 12 framework for diabetes management Complement the integration process of the mediator with ontologies and semantic reasoning support Improve the existing logic-based agents that provide monitoring, advice and diagnosis Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

4 Introduction Contributions Study how to embed a semantic reasoning at the infrastructure level present SWRL rules to provide semantic reasoning on the ontology concepts instantiate the ontology with individuals coming from a patient database Describe a diabetic patient profile using an ontology formalised in OWL Profiles on diabetes not previously available Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

5 COMMODITY 12 personal health system COMMODITY 12 overview Management of diabetes becomes an increasingly important problem worldwide diabetic patients not able to take crucial decisions related to treatment need to consult healthcare professionals Advise patients with recommendations and alerts based on their data Assist medical personnel with taking informed and timely decisions Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

6 Architecture COMMODITY 12 personal health system Deductive, hypothetical and temporal reasoning + KB LAMA logical terms Translator Mediator Translator Translator Web interface XML Smart hub query processing Doctor Patient Patient DB Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

7 COMMODITY 12 personal health system Portavita interface Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

8 COMMODITY 12 personal health system LAMA agents Use personal agents [Kafalı et al. 2013] as active software components to manage specific characteristics of individuals in user profiles identify contextual conditions about the domain by observing through sensors process intelligently information by reasoning logically to support monitoring, the provision of alerts, advice, and diagnosis Use the agent platform GOLEM for deployment Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

9 Agent control COMMODITY 12 personal health system Mind Body Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

10 Agent control COMMODITY 12 personal health system Mind observations Body Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

11 Agent control COMMODITY 12 personal health system Mind observations call cycle step Body KB Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

12 Agent control COMMODITY 12 personal health system Mind observations call cycle step revise state Body KB Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

13 Agent control COMMODITY 12 personal health system Mind observations call cycle step revise state select plan Body KB Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

14 Agent control COMMODITY 12 personal health system Mind observations call cycle step revise state select plan Body KB activate goal Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

15 Agent control COMMODITY 12 personal health system Mind observations call cycle step revise state select plan Body KB choose action activate goal Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

16 Agent control COMMODITY 12 personal health system Mind observations call cycle step revise state select plan Body KB try action choose action activate goal Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

17 Agent control COMMODITY 12 personal health system Mind observations call cycle step revise state select plan Body KB try action choose action activate goal Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

18 Agent control COMMODITY 12 personal health system Mind observations call cycle step revise state select plan Body return KB try action choose action activate goal Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

19 Agent control COMMODITY 12 personal health system Mind observations call cycle step revise state select plan Body return KB execute action try action choose action activate goal Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

20 ORC for semantic reasoning COMMODITY 12 extended with ORC Existing COMMODITY 12 system Proposed extension Deductive, hypothetical and temporal reasoning + KB Ontology instance (individuals) Semantic rules (SWRL) Patient profile ontology (OWL) LAMA logical terms Translator Mediator Translator ontology individuals ORC import external ontologies Translator XML Web interface Smart hub query processing... Doctor Patient Patient DB Food SNOMED CT observation Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

21 Sample logic rule ORC for semantic reasoning a d v i s e e c o n s u l t a t i o n ( Patient, T): has age ( Patient, Age, T ), Age < 80, has no hospital access ( Patient, T ), \+ consulted ( Patient, i n t e r n i s t, years, 1, T ), h a s s y s t o l i c b p s ( Patient, [ MostRecent, SecondMostRecent Rest ], months, 6, T ), MostRecent > 140, SecondMostRecent > 140. Rule can be improved via semantic reasoning in terms of access to / inference on data: has no hospital access(...) inferred from living place Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

22 Sample logic rule ORC for semantic reasoning a d v i s e e c o n s u l t a t i o n ( Patient, T): has age ( Patient, Age, T ), Age < 80, has no hospital access ( Patient, T ), \+ consulted ( Patient, i n t e r n i s t, years, 1, T ), h a s s y s t o l i c b p s ( Patient, [ MostRecent, SecondMostRecent Rest ], months, 6, T ), MostRecent > 140, SecondMostRecent > 140. Rule can be improved via semantic reasoning in terms of access to / inference on data: has no hospital access(...) inferred from living place knowledge representation / development effort: has systolic bps(...) parent concept from class hierarchy Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

23 Ontology classes ORC for semantic reasoning Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

24 Ontology rules ORC for semantic reasoning Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

25 Illustrative Example Portavita patient database Patient Age Living Place Lutjebroek Patient Observation Date Code Value Portavita Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

26 Ontology assertions Illustrative Example f o r every p a t i e n t p : add to the ontology : i n d i v i d u a l p. p a t i e n t I d with class P a t i e n t P r o f i l e i n d i v i d u a l p. l i v i n g P l a c e with class LivingPlace o b j e c t p r o p e r t y p. p a t i e n t I d haslivingplace p. l i v i n g P l a c e o b j e c t p r o p e r t y p. p a t i e n t I d hasage p. age f o r every observation o : add to the ontology : i n d i v i d u a l o. o b s e r v a t i o n I d with class o. code d a t a p r o p e r t y o. o b s e r v a t i o n I d hasvalue o. value d a t a p r o p e r t y o. o b s e r v a t i o n I d hasmeasurementdate o. date o b j e c t p r o p e r t y o. p a t i e n t I d hasobservation o. o b s e r v a t i o n I d Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

27 Reasoning outcome Illustrative Example Get data from DB Apply semantic reasoning Translate ontology individuals into logic predicates has no hospital access ( patient 82319, ). h a s s y s t o l i c b p ( patient 82319, 133, ). h a s s y s t o l i c b p ( patient 82319, 141, ). h a s s y s t o l i c b p ( patient 82319, 157, ). Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

28 Conclusions Conclusions Presented an ontology reasoning component ORC that: builds upon existing personal health environment COMMODITY 12 support the integration and interpretation of multimodal medical information Future work: integrate other ontologies such as for food and alcohol provide generic translators based on a concept ontology run experimental tests to evaluate our system Kafalı, Sindlar, van der Weide and Stathis ORC: Ontology Reasoning for Diabetes / 17

ORC: an Ontology Reasoning Component for Diabetes

ORC: an Ontology Reasoning Component for Diabetes ORC: an Ontology Reasoning Component for Diabetes Özgür Kafalı 1, Michal Sindlar 2, Tom van der Weide 2 and Kostas Stathis 1 1 Department of Computer Science Royal Holloway, University of London, Egham,

More information

COMMODITY 12 : A smart e-health environment for diabetes management AUTHOR COPY

COMMODITY 12 : A smart e-health environment for diabetes management AUTHOR COPY Journal of Ambient Intelligence and Smart Environments 5 (2013) 479 502 479 DOI 10.3233/AIS-130220 IOS Press COMMODITY 12 : A smart e-health environment for diabetes management Özgür Kafalı a,*, Stefano

More information

AN ONTOLOGY FOR DIABETES EARLY WARNING SYSTEM

AN ONTOLOGY FOR DIABETES EARLY WARNING SYSTEM AN ONTOLOGY FOR DIABETES EARLY WARNING SYSTEM 1 NOUF ALMUTAIRI, 2 RIYAD ALSHAMMARI, 3 IMRAN RAZZAK 1,2,3 King Saud bin Abdulaziz University for Health Sciences, Riyadh, Saudi Arabia E-mail: razzakmu@ngha.med.sa

More information

STIN2103. Knowledge. engineering expert systems. Wan Hussain Wan Ishak. SOC 2079 Ext.: Url:

STIN2103. Knowledge. engineering expert systems. Wan Hussain Wan Ishak. SOC 2079 Ext.: Url: & Knowledge STIN2103 engineering expert systems Wan Hussain Wan Ishak SOC 2079 Ext.: 4786 Email: hussain@uum.edu.my Url: http://www.wanhussain.com Outline Knowledge Representation Types of knowledge Knowledge

More information

Activity Recognition for an Agent-oriented Personal Health System

Activity Recognition for an Agent-oriented Personal Health System Activity Recognition for an Agent-oriented Personal Health System Özgür Kafalı, Alfonso E. Romero and Kostas Stathis Department of Computer Science Royal Holloway, University of London Egham, TW20 0EX,

More information

Foundations of AI. 10. Knowledge Representation: Modeling with Logic. Concepts, Actions, Time, & All the Rest

Foundations of AI. 10. Knowledge Representation: Modeling with Logic. Concepts, Actions, Time, & All the Rest Foundations of AI 10. Knowledge Representation: Modeling with Logic Concepts, Actions, Time, & All the Rest Wolfram Burgard, Andreas Karwath, Bernhard Nebel, and Martin Riedmiller 10/1 Contents Knowledge

More information

APPLYING ONTOLOGY AND SEMANTIC WEB TECHNOLOGIES TO CLINICAL AND TRANSLATIONAL STUDIES

APPLYING ONTOLOGY AND SEMANTIC WEB TECHNOLOGIES TO CLINICAL AND TRANSLATIONAL STUDIES APPLYING ONTOLOGY AND SEMANTIC WEB TECHNOLOGIES TO CLINICAL AND TRANSLATIONAL STUDIES Cui Tao, PhD Assistant Professor of Biomedical Informatics University of Texas Health Science Center at Houston School

More information

AN ONTOLOGICAL APPROACH TO REPRESENTING AND REASONING WITH TEMPORAL CONSTRAINTS IN CLINICAL TRIAL PROTOCOLS

AN ONTOLOGICAL APPROACH TO REPRESENTING AND REASONING WITH TEMPORAL CONSTRAINTS IN CLINICAL TRIAL PROTOCOLS AN ONTOLOGICAL APPROACH TO REPRESENTING AND REASONING WITH TEMPORAL CONSTRAINTS IN CLINICAL TRIAL PROTOCOLS Ravi D. Shankar, Susana B. Martins, Martin J. O Connor and Amar K. Das Stanford Medical Informatics,

More information

SAGE. Nick Beard Vice President, IDX Systems Corp.

SAGE. Nick Beard Vice President, IDX Systems Corp. SAGE Nick Beard Vice President, IDX Systems Corp. Sharable Active Guideline Environment An R&D consortium to develop the technology infrastructure to enable computable clinical guidelines, that will be

More information

Clinical Observation Modeling

Clinical Observation Modeling Clinical Observation Modeling VA Informatics Architecture SOLOR Meeting Walter Sujansky January 31, 2013 Goals of Clinical Observation Modeling Create conceptual-level models of the discrete statements

More information

Expert Systems. Artificial Intelligence. Lecture 4 Karim Bouzoubaa

Expert Systems. Artificial Intelligence. Lecture 4 Karim Bouzoubaa Expert Systems Artificial Intelligence Lecture 4 Karim Bouzoubaa Artificial Intelligence Copyright Karim Bouzoubaa 2 Introduction ES: Capture, represent, store and apply human K using a machine Practical

More information

Programming with Goals (3)

Programming with Goals (3) Programming with Goals (3) M. Birna van Riemsdijk, TU Delft, The Netherlands GOAL slides adapted from MAS course slides by Hindriks 4/24/11 Delft University of Technology Challenge the future Outline GOAL:

More information

BeliefOWL: An Evidential Representation in OWL ontology

BeliefOWL: An Evidential Representation in OWL ontology BeliefOWL: An Evidential Representation in OWL ontology Amira Essaid essaid_amira@yahoo.fr Boutheina Ben Yaghlane boutheina.yaghlane@ihec.rnu.tn Higher Institute of Management of Tunis LARODEC Laboratory

More information

A RDF and OWL-Based Temporal Context Reasoning Model for Smart Home

A RDF and OWL-Based Temporal Context Reasoning Model for Smart Home Information Technology Journal 6 (8): 1130-1138, 2007 ISSN 1812-5638 2008 Asian Network for Scientific Information A RDF and OWL-Based Temporal Context Reasoning Model for Smart Home Hsien-Chou Liao and

More information

Knowledge networks of biological and medical data An exhaustive and flexible solution to model life sciences domains

Knowledge networks of biological and medical data An exhaustive and flexible solution to model life sciences domains Knowledge networks of biological and medical data An exhaustive and flexible solution to model life sciences domains Dr. Sascha Losko, Dr. Karsten Wenger, Dr. Wenzel Kalus, Dr. Andrea Ramge, Dr. Jens Wiehler,

More information

Stepwise Knowledge Acquisition in a Fuzzy Knowledge Representation Framework

Stepwise Knowledge Acquisition in a Fuzzy Knowledge Representation Framework Stepwise Knowledge Acquisition in a Fuzzy Knowledge Representation Framework Thomas E. Rothenfluh 1, Karl Bögl 2, and Klaus-Peter Adlassnig 2 1 Department of Psychology University of Zurich, Zürichbergstraße

More information

Semantic Alignment between ICD-11 and SNOMED-CT. By Marcie Wright RHIA, CHDA, CCS

Semantic Alignment between ICD-11 and SNOMED-CT. By Marcie Wright RHIA, CHDA, CCS Semantic Alignment between ICD-11 and SNOMED-CT By Marcie Wright RHIA, CHDA, CCS World Health Organization (WHO) owns and publishes the International Classification of Diseases (ICD) WHO was entrusted

More information

! Towards a Human Factors Ontology for Cyber Security!

! Towards a Human Factors Ontology for Cyber Security! ! Towards a Human Factors Ontology for Cyber Security! Alessandro Oltramari CyLab, Carnegie Mellon University Joint work with D. Henshel and M. Cains (IU), B. Hoffman (ARL) Outline! A Holistic Perspective

More information

CHAPTER 6 DESIGN AND ARCHITECTURE OF REAL TIME WEB-CENTRIC TELEHEALTH DIABETES DIAGNOSIS EXPERT SYSTEM

CHAPTER 6 DESIGN AND ARCHITECTURE OF REAL TIME WEB-CENTRIC TELEHEALTH DIABETES DIAGNOSIS EXPERT SYSTEM 87 CHAPTER 6 DESIGN AND ARCHITECTURE OF REAL TIME WEB-CENTRIC TELEHEALTH DIABETES DIAGNOSIS EXPERT SYSTEM 6.1 INTRODUCTION This chapter presents the design and architecture of real time Web centric telehealth

More information

Time-Oriented Question Answering from Clinical Narratives Using Semantic-Web Techniques

Time-Oriented Question Answering from Clinical Narratives Using Semantic-Web Techniques Time-Oriented Question Answering from Clinical Narratives Using Semantic-Web Techniques Cui Tao, Haorld R. Solbrig, Deepak K. Sharma, Wei-Qi Wei, Guergana K. Savova, and Christopher G. Chute Division of

More information

Using an Integrated Ontology and Information Model for Querying and Reasoning about Phenotypes: The Case of Autism

Using an Integrated Ontology and Information Model for Querying and Reasoning about Phenotypes: The Case of Autism Using an Integrated Ontology and Information Model for Querying and Reasoning about Phenotypes: The Case of Autism Samson W. Tu, MS, Lakshika Tennakoon, RMP, MSC, MPhil, Martin O'Connor, MS, Ravi Shankar,

More information

Kaiser Permanente Convergent Medical Terminology (CMT)

Kaiser Permanente Convergent Medical Terminology (CMT) Kaiser Permanente Convergent Medical Terminology (CMT) Using Oxford RDFox and SNOMED for Quality Measures Peter Hendler, MD Alan Abilla, RN, MS About Kaiser Permanente Largest health maintenance organization

More information

Causal Knowledge Modeling for Traditional Chinese Medicine using OWL 2

Causal Knowledge Modeling for Traditional Chinese Medicine using OWL 2 Causal Knowledge Modeling for Traditional Chinese Medicine using OWL 2 Peiqin Gu College of Computer Science, Zhejiang University, P.R.China gupeiqin@zju.edu.cn Abstract. Unlike Western Medicine, those

More information

Ontology-based Approach for Hepatobiliary System Diseases

Ontology-based Approach for Hepatobiliary System Diseases Ontology-based Approach for Hepatobiliary System Diseases Galal AL Marzoqi, Marco Alfonse, Ibrahim F. Moawad, Mohamed Roushdy Faculty of Computer and Information Science, Ain shams University, Abbasia,

More information

Co-ordinated multi-agency support for young carers and their families

Co-ordinated multi-agency support for young carers and their families Practice example Co-ordinated multi-agency support for young carers and their families What is the initiative? A partnership between a young carers service and a council Who runs it? Off The Record s Young

More information

International Journal of Software and Web Sciences (IJSWS)

International Journal of Software and Web Sciences (IJSWS) International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) ISSN (Print): 2279-0063 ISSN (Online): 2279-0071 International

More information

Affective Game Engines: Motivation & Requirements

Affective Game Engines: Motivation & Requirements Affective Game Engines: Motivation & Requirements Eva Hudlicka Psychometrix Associates Blacksburg, VA hudlicka@ieee.org psychometrixassociates.com DigiPen Institute of Technology February 20, 2009 1 Outline

More information

Ontology Development for Type II Diabetes Mellitus Clinical Support System

Ontology Development for Type II Diabetes Mellitus Clinical Support System Ontology Development for Type II Diabetes Mellitus Clinical Support System Nopphadol Chalortham 1, Marut Buranarach 2 and Thepchai Supnithi 2 1 Department of Health-Related Informatics of Pharmacy, Silpakorn

More information

Semantic empowerment of Health Care and Life Science Applications

Semantic empowerment of Health Care and Life Science Applications Wright State University CORE Scholar Kno.e.sis Publications The Ohio Center of Excellence in Knowledge- Enabled Computing (Kno.e.sis) 5-26-2006 Semantic empowerment of Health Care and Life Science Applications

More information

Exploiting deduction and abduction services for information retrieval. Ralf Moeller Hamburg University of Technology

Exploiting deduction and abduction services for information retrieval. Ralf Moeller Hamburg University of Technology Exploiting deduction and abduction services for information retrieval Ralf Moeller Hamburg University of Technology Seman&c Technologies: Data Descrip&ons Ontologies (specified in, e.g., OWL, UML) (aka

More information

Ontological Queries Supporting Decision Process in KaSeA System

Ontological Queries Supporting Decision Process in KaSeA System Ontological Queries Supporting Decision Process in KaSeA System Krzysztof GOCZYŁA, Aleksander WALOSZEK, Wojciech WALOSZEK, Teresa ZAWADZKA, Michał ZAWADZKI Gdańsk University of Technology, Faculty of Electronics,

More information

Hans Erik Henriksen, CEO Healthcare DENMARK

Hans Erik Henriksen, CEO Healthcare DENMARK A National EHR for everybody Hans Erik Henriksen, CEO Healthcare DENMARK ConhIT 2014 20-05-2014 1 Agenda Healthcare DENMARK E-health in Denmark A national EHR Future perspectives 20-05-2014 2 Healthcare

More information

Standardize and Optimize. Trials and Drug Development

Standardize and Optimize. Trials and Drug Development Informatics Infrastructure to Standardize and Optimize Quantitative Imaging in Clinical Trials and Drug Development Daniel L. Rubin, MD, MS Assistant Professor of Radiology Member, Stanford Cancer Center

More information

Global WordNet Tools

Global WordNet Tools Faculty of Informatics, Masaryk University Botanická 68a, CZ-602 00 Brno, Czech Republic E-mail: hales@fi.muni.cz, xrambous@fi.muni.cz Web: http://deb.fi.muni.cz SeWe 2008, Svratka Outline 1 2 3 4 the

More information

Inferencing in Artificial Intelligence and Computational Linguistics

Inferencing in Artificial Intelligence and Computational Linguistics Inferencing in Artificial Intelligence and Computational Linguistics (http://www.dfki.de/~horacek/infer-ai-cl.html) no classes on 28.5., 18.6., 25.6. 2-3 extra lectures will be scheduled Helmut Horacek

More information

Heiner Oberkampf. DISSERTATION for the degree of Doctor of Natural Sciences (Dr. rer. nat.)

Heiner Oberkampf. DISSERTATION for the degree of Doctor of Natural Sciences (Dr. rer. nat.) INTEGRATED REPRESENTATION OF CLINICAL DATA AND MEDICAL KNOWLEDGE AN ONTOLOGY-BASED APPROACH FOR THE RADIOLOGY DOMAIN Heiner Oberkampf DISSERTATION for the degree of Doctor of Natural Sciences (Dr. rer.

More information

Pythia WEB ENABLED TIMED INFLUENCE NET MODELING TOOL SAL. Lee W. Wagenhals Alexander H. Levis

Pythia WEB ENABLED TIMED INFLUENCE NET MODELING TOOL SAL. Lee W. Wagenhals Alexander H. Levis Pythia WEB ENABLED TIMED INFLUENCE NET MODELING TOOL Lee W. Wagenhals Alexander H. Levis ,@gmu.edu Adversary Behavioral Modeling Maxwell AFB, Montgomery AL March 8-9, 2007 1 Outline Pythia

More information

On the Contributors to System Smartness : A Med Net Agent System Case Study

On the Contributors to System Smartness : A Med Net Agent System Case Study On the Contributors to System Smartness : A Med Net Agent System Case Study M. Lyell, W. Krueger, W. Chen Intelligent Automation, Inc. 15400 Calhoun Drive, Suite 400 Rockville MD 20855 USA {mlyell, wkrueger,

More information

SNOMED CT and Orphanet working together

SNOMED CT and Orphanet working together SNOMED CT and Orphanet working together Ian Green Business Services Executive, IHTSDO Dr. Romina Armando INSERM Session outline What is Orphanet? Rare disorders Orphanet nomenclature Mappings to other

More information

What Is A Knowledge Representation? Lecture 13

What Is A Knowledge Representation? Lecture 13 What Is A Knowledge Representation? 6.871 - Lecture 13 Outline What Is A Representation? Five Roles What Should A Representation Be? What Consequences Does This View Have For Research And Practice? One

More information

A FUZZY LOGIC BASED CLASSIFICATION TECHNIQUE FOR CLINICAL DATASETS

A FUZZY LOGIC BASED CLASSIFICATION TECHNIQUE FOR CLINICAL DATASETS A FUZZY LOGIC BASED CLASSIFICATION TECHNIQUE FOR CLINICAL DATASETS H. Keerthi, BE-CSE Final year, IFET College of Engineering, Villupuram R. Vimala, Assistant Professor, IFET College of Engineering, Villupuram

More information

Outline. BIONT Goals. Work so Far. Collaborative BIONT BIORDF use case. Next Steps

Outline. BIONT Goals. Work so Far. Collaborative BIONT BIORDF use case. Next Steps Outline BIONT Goals Work so Far Collaborative BIONT BIORDF use case Next Steps BIONT Goals Develop best practices around crucial questions related to creation and use of ontologies: What is an ontology?

More information

Using a Guideline-Centered Approach for the Design of a Clinical Decision Support System to Promote Smoking Cessation

Using a Guideline-Centered Approach for the Design of a Clinical Decision Support System to Promote Smoking Cessation Using a Guideline-Centered Approach for the Design of a Clinical Decision Support System to Promote Smoking Cessation Richard N. Shiffman, MD, MCIS George Michel, MS Abdelwaheb Essaihi, MD Theodore W.

More information

FUTURE SMART ENERGY SOFTWARE HOUSES

FUTURE SMART ENERGY SOFTWARE HOUSES FUTURE SMART ENERGY SOFTWARE HOUSES Futures Conference 2018 Petri Kettunen & Niko Mäkitalo Matemaattis-luonnontieteellinen Department of Computer Science tiedekunta Petri Kettunen & Niko Mäkitalo 14/06/2018

More information

Joint ICTP-IAEA School of Nuclear Energy Management August The IAEA Safety Standards. Dominique Delattre IAEA, Vienna Austria

Joint ICTP-IAEA School of Nuclear Energy Management August The IAEA Safety Standards. Dominique Delattre IAEA, Vienna Austria 2257-51 Joint ICTP-IAEA School of Nuclear Energy Management 8-26 August 2011 The IAEA Safety Standards Dominique Delattre IAEA, Vienna Austria HISTORY, PROCESS AND CURRENT STATUS OF THE IAEA SAFETY STANDARDS

More information

EEL-5840 Elements of {Artificial} Machine Intelligence

EEL-5840 Elements of {Artificial} Machine Intelligence Menu Introduction Syllabus Grading: Last 2 Yrs Class Average 3.55; {3.7 Fall 2012 w/24 students & 3.45 Fall 2013} General Comments Copyright Dr. A. Antonio Arroyo Page 2 vs. Artificial Intelligence? DEF:

More information

A mobile diabetes management and educational system for type- 2 diabetics in Saudi Arabia (SAED)

A mobile diabetes management and educational system for type- 2 diabetics in Saudi Arabia (SAED) Original Article Page 1 of 8 A mobile diabetes management and educational system for type- 2 diabetics in Saudi Arabia (SAED) Mohammed M. Alotaibi 1, Robert Istepanian 2, Nada Philip 3 1 Faculty of Computer

More information

Ontology-Based Personalized System to Support Patients at Home. Mukasine Angelique. Supervisors Professor Rune Fensli Jan Pettersen Nytun

Ontology-Based Personalized System to Support Patients at Home. Mukasine Angelique. Supervisors Professor Rune Fensli Jan Pettersen Nytun Ontology-Based Personalized System to Support Patients at Home Mukasine Angelique Supervisors Professor Rune Fensli Jan Pettersen Nytun This Thesis is submitted in Partial Fulfillment of the Requirements

More information

Representation of Part-Whole Relationships in SNOMED CT

Representation of Part-Whole Relationships in SNOMED CT Representation of Part-Whole Relationships in SNOMED CT A. Patrice Seyed 1, Alan Rector 2, Uli Sattler 2, Bijan Parsia 2, and Robert Stevens 2 1 Department of Computer Science and Engineering, University

More information

Semantic Web Applications in Financial Industry, Government, Health Care and Life Sciences

Semantic Web Applications in Financial Industry, Government, Health Care and Life Sciences Wright State University CORE Scholar Kno.e.sis Publications The Ohio Center of Excellence in Knowledge- Enabled Computing (Kno.e.sis) 3-28-2006 Semantic Web Applications in Financial Industry, Government,

More information

Building a Diseases Symptoms Ontology for Medical Diagnosis: An Integrative Approach

Building a Diseases Symptoms Ontology for Medical Diagnosis: An Integrative Approach Building a Diseases Symptoms Ontology for Medical Diagnosis: An Integrative Approach Osama Mohammed, Rachid Benlamri and Simon Fong* Department of Software Engineering, Lakehead University, Ontario, Canada

More information

Clinical Genome Knowledge Base and Linked Data technologies. Aleksandar Milosavljevic

Clinical Genome Knowledge Base and Linked Data technologies. Aleksandar Milosavljevic Clinical Genome Knowledge Base and Linked Data technologies Aleksandar Milosavljevic Topics 1. ClinGen Resource project 2. Building the Clinical Genome Knowledge Base 3. Linked Data technologies 4. Using

More information

Research on Construction and SWRL Reasoning of Ontology of Maize Diseases

Research on Construction and SWRL Reasoning of Ontology of Maize Diseases Research on Construction and SWRL Reasoning of Ontology of Maize Diseases Li Ma, Helong Yu, Guifen Chen,Liying Cao,Yueling Zhao College of Information and Technology Science, Jilin Agricultural University,Chang

More information

Expert System Profile

Expert System Profile Expert System Profile GENERAL Domain: Medical Main General Function: Diagnosis System Name: INTERNIST-I/ CADUCEUS (or INTERNIST-II) Dates: 1970 s 1980 s Researchers: Ph.D. Harry Pople, M.D. Jack D. Myers

More information

Chapter 2. Knowledge Representation: Reasoning, Issues, and Acquisition. Teaching Notes

Chapter 2. Knowledge Representation: Reasoning, Issues, and Acquisition. Teaching Notes Chapter 2 Knowledge Representation: Reasoning, Issues, and Acquisition Teaching Notes This chapter explains how knowledge is represented in artificial intelligence. The topic may be launched by introducing

More information

Health informatics Digital imaging and communication in medicine (DICOM) including workflow and data management

Health informatics Digital imaging and communication in medicine (DICOM) including workflow and data management INTERNATIONAL STANDARD ISO 12052 Second edition 2017-08 Health informatics Digital imaging and communication in medicine (DICOM) including workflow and data management Informatique de santé Imagerie numérique

More information

Information Driven Healthy Eating

Information Driven Healthy Eating Information Driven Healthy Eating Nicole Koenderink, Liesbeth Luijendijk Wageningen UR, Food & Biobased Research 4 december 2014 Food & Biobased research, part of Wageningen UR (University & Research centre)

More information

An Ontology for Healthcare Quality Indicators: Challenges for Semantic Interoperability

An Ontology for Healthcare Quality Indicators: Challenges for Semantic Interoperability 414 Digital Healthcare Empowering Europeans R. Cornet et al. (Eds.) 2015 European Federation for Medical Informatics (EFMI). This article is published online with Open Access by IOS Press and distributed

More information

The NIMH Data Repositories

The NIMH Data Repositories The NIMH Data Repositories November 5, 2014 Greg Farber, Ph.D. Director Office of Technology Development and Coordination National Institute of Mental Health National Institutes of Health 1 Expansion to

More information

Overview. cis32-spring2003-parsons-lect15 2

Overview. cis32-spring2003-parsons-lect15 2 EXPERT SYSTEMS Overview The last lecture looked at rules as a technique for knowledge representation. In a while we will go on to look at logic as a means of knowledge representation. First, however, we

More information

APPROVAL SHEET. Uncertainty in Semantic Web. Doctor of Philosophy, 2005

APPROVAL SHEET. Uncertainty in Semantic Web. Doctor of Philosophy, 2005 APPROVAL SHEET Title of Dissertation: BayesOWL: A Probabilistic Framework for Uncertainty in Semantic Web Name of Candidate: Zhongli Ding Doctor of Philosophy, 2005 Dissertation and Abstract Approved:

More information

Artificial Intelligence in Medicine

Artificial Intelligence in Medicine Artificial Intelligence in Medicine 58 (2013) 23 36 Contents lists available at SciVerse ScienceDirect Artificial Intelligence in Medicine jou rn al hom e page: www.elsevier.com/locate/aiim Generating

More information

Overview EXPERT SYSTEMS. What is an expert system?

Overview EXPERT SYSTEMS. What is an expert system? EXPERT SYSTEMS Overview The last lecture looked at rules as a technique for knowledge representation. In a while we will go on to look at logic as a means of knowledge representation. First, however, we

More information

Binding Ontologies and Coding Systems to Electronic Health Records and Message

Binding Ontologies and Coding Systems to Electronic Health Records and Message Binding Ontologies and Coding Systems to Electronic Health Records and Message Alan Rector 1, Rahil Qamar 1 & Tom Marley 2 1 University of Manchester 2 University of Salford with acknowledgements to the

More information

Elsevier ClinicalKey TM FAQs

Elsevier ClinicalKey TM FAQs Elsevier ClinicalKey FAQs Table of Contents What is ClinicalKey? Where can I access ClinicalKey? What medical specialties are covered in ClinicalKey? What information is available through ClinicalKey?

More information

With Semantic Analysis from Noun Phrases to SNOMED CT and Classification Codes H. R. Straub, M. Duelli, Semfinder AG, Kreuzlingen, Switzerland

With Semantic Analysis from Noun Phrases to SNOMED CT and Classification Codes H. R. Straub, M. Duelli, Semfinder AG, Kreuzlingen, Switzerland With Semantic Analysis from Noun Phrases to SNOMED CT and Classification Codes H. R. Straub, M. Duelli, Semfinder AG, Kreuzlingen, Switzerland Abstract For the classification of freely formulated diagnostic

More information

Defined versus Asserted Classes: Working with the OWL Ontologies. NIF Webinar February 9 th 2010

Defined versus Asserted Classes: Working with the OWL Ontologies. NIF Webinar February 9 th 2010 Defined versus Asserted Classes: Working with the OWL Ontologies NIF Webinar February 9 th 2010 Outline NIFSTD ontologies in brief Multiple vs Single hierarchy of classes/ Asserted vs Inferred classes/primitive

More information

Summary of current policy drivers and national practice overview

Summary of current policy drivers and national practice overview Summary of current policy drivers and national practice overview Nicola Bowtell and Julia Verne Introduction Skin cancer prevention policies were first introduced in the UK during the 1990s. Figure 1,

More information

A Telematic System for Diabetes Management, Reporting and Patient Advice

A Telematic System for Diabetes Management, Reporting and Patient Advice The Journal on Information Technology in Healthcare 2005; 3(5): 307 313 A Telematic System for Diabetes Management, Reporting and Patient Advice Dimitra Iliopoulou*, Kostas Giokas*, Stavroula Mougiakakou,

More information

Reviewing Peer Working A New Way of Working in Mental Health

Reviewing Peer Working A New Way of Working in Mental Health Reviewing Peer Working A New Way of Working in Mental Health A paper in the Experts by Experience series Scottish Recovery Network: July 2013 Introduction The Scottish Government s Mental Health Strategy

More information

Research Scholar, Department of Computer Science and Engineering Man onmaniam Sundaranar University, Thirunelveli, Tamilnadu, India.

Research Scholar, Department of Computer Science and Engineering Man onmaniam Sundaranar University, Thirunelveli, Tamilnadu, India. DEVELOPMENT AND VALIDATION OF ONTOLOGY BASED KNOWLEDGE REPRESENTATION FOR BRAIN TUMOUR DIAGNOSIS AND TREATMENT 1 1 S. Senthilkumar, 2 G. Tholkapia Arasu 1 Research Scholar, Department of Computer Science

More information

Ontology-Based Context Awareness for Driving Assistance Systems

Ontology-Based Context Awareness for Driving Assistance Systems Ontology-Based Context Awareness for Driving Assistance Systems Alexandre Armand 1,2, David Filliat 1, Javier Ibañez-Guzman 2 Abstract Within a vehicle driving space, different entities such as vehicles

More information

Observations on the Use of Ontologies for Autonomous Vehicle Navigation Planning

Observations on the Use of Ontologies for Autonomous Vehicle Navigation Planning Observations on the Use of Ontologies for Autonomous Vehicle Navigation Planning Ron Provine, Mike Uschold, Scott Smith Boeing Phantom Works Stephen Balakirsky, Craig Schlenoff Nat. Inst. of Standards

More information

Ontological Modelling of Situational Awareness in Surgical Interventions

Ontological Modelling of Situational Awareness in Surgical Interventions Ontological Modelling of Situational Awareness in Surgical Interventions Sebastian SIEMOLEIT a,1, Alexandr UCITELI a, Richard Bieck b and Heinrich HERRE a a Institute of Medical Informatics, Statistics

More information

The openehr approach. Background. Approach. Heather Leslie, July 17, 2014

The openehr approach. Background. Approach. Heather Leslie, July 17, 2014 Heather Leslie, July 17, 2014 The openehr approach Background The open source openehr 1 architecture specifications 2 have evolved as the result of over 20 years of research and international implementations,

More information

Using Semantic Web technologies for Clinical Trial Recruitment

Using Semantic Web technologies for Clinical Trial Recruitment Using Semantic Web technologies for Clinical Trial Recruitment Paolo Besana 1, Marc Cuggia 1, Oussama Zekri 2, Annabel Bourde 1,Anita Burgun 1 1 Université de Rennes 1, 2 Centre Eugène Marquis Abstract.

More information

International Journal of Advance Research in Engineering, Science & Technology. An Online Healthy Diet System :An Overview

International Journal of Advance Research in Engineering, Science & Technology. An Online Healthy Diet System :An Overview Impact Factor (SJIF): 4.542 International Journal of Advance Research in Engineering, Science & Technology e-issn: 2393-9877, p-issn: 2394-2444 Volume 4, Issue 4, April-2017 An Online Healthy Diet System

More information

Quality requirements for EHR Archetypes

Quality requirements for EHR Archetypes Quality requirements for EHR Archetypes Dr Archana Tapuria, UCL Dr Tony Austin, UCL Prof Dipak Kalra, UCL, EuroRec Prof Georges De Moor, Univ. Gent, EuroRec MIE 2012, Pisa What is an Electronic Health

More information

Advancing methods to develop behaviour change interventions: A Scoping Review of relevant ontologies

Advancing methods to develop behaviour change interventions: A Scoping Review of relevant ontologies Advancing methods to develop behaviour change interventions: A Scoping Review of relevant ontologies Participating organisations Emma Norris @EJ_Norris Ailbhe Finnerty Janna Hastings Gillian Stokes Susan

More information

ICT4Life. Final Conference. Exploitation : a strategic approach based on iterative testing for real market. Isabella Notarangelo (HOPE)

ICT4Life. Final Conference. Exploitation : a strategic approach based on iterative testing for real market. Isabella Notarangelo (HOPE) ICT4Life Final Conference Exploitation : a strategic approach based on iterative testing for real market. Isabella Notarangelo (HOPE) 10/22/2018 1 Objective Reporting the elements supporting the strategic

More information

Intelligent Machines That Act Rationally. Hang Li Bytedance AI Lab

Intelligent Machines That Act Rationally. Hang Li Bytedance AI Lab Intelligent Machines That Act Rationally Hang Li Bytedance AI Lab Four Definitions of Artificial Intelligence Building intelligent machines (i.e., intelligent computers) Thinking humanly Acting humanly

More information

FAQs for HCP segment New Instructions for Dexcom G5 Mobile Continuous Glucose Monitoring (CGM) System Non-Adjunctive Indication

FAQs for HCP segment New Instructions for Dexcom G5 Mobile Continuous Glucose Monitoring (CGM) System Non-Adjunctive Indication FAQs for HCP segment New Instructions for Dexcom G5 Mobile Continuous Glucose Monitoring (CGM) System Non-Adjunctive Indication Q1. The Dexcom G5 Mobile System is the first CGM System to receive FDA approval

More information

What Happened to Bob? Semantic Data Mining of Context Histories

What Happened to Bob? Semantic Data Mining of Context Histories What Happened to Bob? Semantic Data Mining of Context Histories Michael Wessel, Marko Luther, Ralf Möller Racer Systems DOCOMO Euro-Labs Uni Hamburg A mobile community service 1300+ users in 60+ countries

More information

Embracing Complexity in System of Systems Analysis and Architecting

Embracing Complexity in System of Systems Analysis and Architecting Embracing Complexity in System of Systems Analysis and Architecting Complex Adaptive System 2013 November 13-15, 2013, Baltimore, MA Cihan H. Dagli INCOSE and IIE Fellow Founder Director Systems Engineering

More information

A study on Expert Systems for Diabetic Diagnosis and Treatment

A study on Expert Systems for Diabetic Diagnosis and Treatment A study on Expert Systems for Diabetic and IBRAHIM M.AHMED, ABEER M.MAHMOUD, MOSTAFA AREF, ABDEL-BADEEH M.SALEM Computer Science Department, Faculty of Computer and Information Sciences, Ain Shams University,

More information

Nedap CowControl. Reproduction Management

Nedap CowControl. Reproduction Management Nedap CowControl Reproduction Management EuroTier Innovation Award 2018 The new standard for controlled reproduction Nedap Reproduction Management is the advanced software module that helps dairy farmers

More information

What can Ontology Contribute to an Interdisciplinary Project?

What can Ontology Contribute to an Interdisciplinary Project? What can Ontology Contribute to an Interdisciplinary Project? Andrew U. Frank Geoinformation TU Vienna frank@geoinfo.tuwien.ac.at www.geoinfo.tuwien.ac.at Andrew Frank 1 My naïve view of archeology: How

More information

Using SNOMED CT Codes for Coding Information in Electronic Health Records for Stroke Patients

Using SNOMED CT Codes for Coding Information in Electronic Health Records for Stroke Patients Using SNOMED CT Codes for Coding Information in Electronic Health Records for Stroke Patients Judith van der Kooij a,1, William T.F. Goossen a, Anneke T.M. Goossen-Baremans a, Marinka de Jong-Fintelman

More information

ONTOLOGY. elearnig INITIATIVE PRAISE: Version number 1.0. Peer Review Network Applying Intelligence to Social Work Education

ONTOLOGY. elearnig INITIATIVE PRAISE: Version number 1.0. Peer Review Network Applying Intelligence to Social Work Education elearnig INITIATIVE PRAISE: Peer Review Network Applying Intelligence to Social Work Education Grant agreement number: 2003-4724 / 001-001 EDU - ELEARN ONTOLOGY Version number 1.0 30.10.2005 Executive

More information

The i2b2 transmart Foundation Community Meeting

The i2b2 transmart Foundation Community Meeting The i2b2 transmart Foundation Community Meeting January 15, 2019 11:00 AM Eastern Start Time 11:05 AM Eastern Meetings are recorded Agenda 1 Welcome 5 Foundation Platform Overview 2 Preview of 2019 6 i2b2/transmart

More information

HBML: A Representation Language for Quantitative Behavioral Models in the Human Terrain

HBML: A Representation Language for Quantitative Behavioral Models in the Human Terrain HBML: A Representation Language for Quantitative Behavioral Models in the Human Terrain Nils F. Sandell, Robert Savell David Twardowski, George Cybenko Conference on Social Computing, Behavioral Modeling,

More information

High-level Vision. Bernd Neumann Slides for the course in WS 2004/05. Faculty of Informatics Hamburg University Germany

High-level Vision. Bernd Neumann Slides for the course in WS 2004/05. Faculty of Informatics Hamburg University Germany High-level Vision Bernd Neumann Slides for the course in WS 2004/05 Faculty of Informatics Hamburg University Germany neumann@informatik.uni-hamburg.de http://kogs-www.informatik.uni-hamburg.de 1 Contents

More information

PROPOSED WORK PROGRAMME FOR THE CLEARING-HOUSE MECHANISM IN SUPPORT OF THE STRATEGIC PLAN FOR BIODIVERSITY Note by the Executive Secretary

PROPOSED WORK PROGRAMME FOR THE CLEARING-HOUSE MECHANISM IN SUPPORT OF THE STRATEGIC PLAN FOR BIODIVERSITY Note by the Executive Secretary CBD Distr. GENERAL UNEP/CBD/COP/11/31 30 July 2012 ORIGINAL: ENGLISH CONFERENCE OF THE PARTIES TO THE CONVENTION ON BIOLOGICAL DIVERSITY Eleventh meeting Hyderabad, India, 8 19 October 2012 Item 3.2 of

More information

Curriculum Vitae. Degree and date to be conferred: Masters in Computer Science, 2013.

Curriculum Vitae. Degree and date to be conferred: Masters in Computer Science, 2013. i Curriculum Vitae Name: Deepal Dhariwal. Degree and date to be conferred: Masters in Computer Science, 2013. Secondary education: Dr. Kalmadi Shamarao High School, Pune, 2005 Fergusson College, Pune 2007

More information

Enhanced Asthma Management with Mobile Communication

Enhanced Asthma Management with Mobile Communication Enhanced Asthma Management with Mobile Communication P.S. Ngai, S. Chan, C.T. Lau, K.M. Lau Abstract In this paper, we propose a prototype system to enhance the management of asthma condition in patients

More information

EHTEL. ehealth Interoperability Workshop

EHTEL. ehealth Interoperability Workshop EHTEL ehealth Interoperability Workshop eprescribing and cross-border medication management Brussels 01/06/2004 Company profile Established in 1994 by the important actors in healthcare e-health company

More information

Support system for breast cancer treatment

Support system for breast cancer treatment Support system for breast cancer treatment SNEZANA ADZEMOVIC Civil Hospital of Cacak, Cara Lazara bb, 32000 Cacak, SERBIA Abstract:-The aim of this paper is to seek out optimal relation between diagnostic

More information

GPS and Accelerometer Enhanced Prompted Recall as an Ontological Tool in Travel Behavior and Physical Activity Research

GPS and Accelerometer Enhanced Prompted Recall as an Ontological Tool in Travel Behavior and Physical Activity Research GPS and Accelerometer Enhanced Prompted Recall as an Ontological Tool in Travel Behavior and Physical Activity Research Laura Wilson Westat, Inc. May 2016 Outline Physical Activity Research Prompted Recall

More information

Role Representation Model Using OWL and SWRL

Role Representation Model Using OWL and SWRL Role Representation Model Using OWL and SWRL Kouji Kozaki, Eiichi Sunagawa, Yoshinobu Kitamura, Riichiro Mizoguchi The Institute of Scientific and Industrial Research (ISIR), Osaka University 8-1 Mihogaoka,

More information