Physicians and possibly medical students and paramedics.

Size: px
Start display at page:

Download "Physicians and possibly medical students and paramedics."

Transcription

1 MYCIN Introduction Problem domain: Selection of antibiotics for patients with serious infections. Medical decision making, particularly in clinical medicine is regarded as an "art form" rather than a "scientific discipline": this knowledge must be systemised for practical day-to-day use and for teaching and learning clinical medicine. Target Users: Physicians and possibly medical students and paramedics. Originators: Edward Shortliffe, (1972) Department of Medicine and Computer Science, Heuristic Programming Project, Stanford University School of Medicine, Stanford, CALIFORNIA References: Shortliffe, Edward H.(1981), "CONSULTATION SYSTEMS FOR PHYSICIANS: The Role of Artificial Intelligence Techniques". In Webber, Bonnie L.and Nilsson, Nils J. (Eds.). Readings in Artificial Intelligence. pp Tioga Publishing Company. Palo Alto, California.

2 Why choose MYCIN? "MYCIN developed at Stanford in the mid-1970s, was one of the first programs to address the problems of reasoning with uncertain or incomp lete information. MYCIN provided clear and logical explanation of the reasoning, used a control structure appropriate to the specific problem domain, and identified criteria to reliably evaluate its performance. Many of the expert system development techniques currently in use were first developed in the MYCIN project."

3 How does it work? DETAILS OF NEW CASE user ADVICE & EXPLANATIONS user interface knowledge base inference strategy expert system building tools knowledge engineer domain expert

4 What does it do? Diagnose inf ect ious disease and recommend appropriat e t herapy. Is t here a significant infect ion which requires t reat ment? What is t he ident it y of t he organism? What are t he pot ent ially useful drugs? Which drug or drugs will be best for t he pat ient?

5 MYCIN -- A typical consultation 1. Patient s name: (first - last) ** FRED BRAUN (Questions 1-3 requestbackground patient data). 2. Sex: ** M 3. Age: ** Are there any cultures for Fred Braun which may be related to the present illness, and from which organisms have been grown successfully in the microbiology laboratory? ** Y CULTURE From what site was the specimen for CULTURE - 1 taken? ** BLOD = BLOOD (System corrects typing error). 6. Please give the date and time when CULTURE-1 was obtained. (mo/da/yr time) ** JUN 20, 1977 The first organism isolated from the blood culture of 20-JUN-77 (CULTURE-1) will be referred to as: ORGANISM Enter the laboratory - reported identity of ORGANISM-1: ** UNKNOWN (Typically identity is not known yet). 8. The strain (gram or Ziehl-Neelsen acid-fast) of ORGANISM-1: ** NEG (Preliminary lab results give some clues). 9. Is ORGANISM - 1 rod or coccus (etc.): ** ROD 10. What is the form of the individual organisms (e.g. lancetshaped for cocci, fusiform for rods, etc)? ** FUSIFORM (... more questions follow in order to gather sufficient information to infer the identity and significance of the infecting organisms...) 23. What is the suspected portal of entry of the gramneg rod from the blood culture of 20-JUN-77 (ORGANISM-1) into this sterile site? ** GI (6) (User indicates the uncertainty of his response). 24. Is Fred Braun a burn patient? ** N 25. Is Fred Braun a compromised host (e.g. alcoholic, sickle-cell-disease, immunosuppressed)? ** N 26. Is Fred Braun febrile? ** Y (... after about questions, MYCIN prints the diagnostic hypotheses on which therapy will be based...)

6 My therapy recommendations will be designed to treat for organisms that are either very likely, or, although less likely, would have a significant effect on therapy selection if they were present. It is important to cover for the following probable infection(s) and associated organism(s): INFECTION-1 is BACTEREMIA <ITEM-1> E.COLI [ORGANISM-1] <ITEM-2> KLEBSIELLA [ORGANISM-1] <ITEM-3> ENTEROBACTER [ORGANISM-1] <ITEM-4> KLEBSIELLA-PNEUMONIAE [ORGANISM-1] ** WHAT DOES GU MANIPULATION TELL YOU ABOUT THE IDENTITY OF AN ORGANISM? The rules listed below use: whether the patient has had a genito-urinary manipulative procedure to conclude about: the identity of the organism 156, 163, 190 Which do you wish to see? ** 156 RULE 156 IF: 1. The site of the culture blood, and 2. The gram stain of the organism is gramneg, and 3. The morphology of the organism is rod, and 4. The portal of entry of the organism is urine, and 5. The patient has not had a genito-urinary manipulative procedure, and 6. Cystitis is not a problem for which the patient has been treated THEN: There is suggestive evidence (.6) that the identity of the organism is e.coli ** IS BLOOD A STERILE SITE? Yes. Blood is one of those sites that is normally sterile. ** WHAT ARE THE NONSTERILE SITES? Those sites that are normally nonsterile are: CERVIX, CUTANEOUS-ULCER, LOCHIA, NOSE, SKIN, STOOL, THROAT, URETHRA, VAGINA. ** IS BACTEROIDES AEROBIC? No, the aerobicity of bacteroides is anaerobic.

7 Dynamic knowledge - st ruct ure pat ient cult ure1 cult ure2 operat ion organism1 organism2 organism3 drug5 drug1 drug2 drug3 drug4 Context tree

8 Implementation and Algorithms How MYCIN works 1. Create patient 'context' tree 2. Is there an organism that requires therapy? 3. Decide which drugs are potentially useful and select the best drug The above is a goal-oriented backward chaining approach to rule invocation & question selection. MYCIN accomplishes the invocation and the selection through two procedures: MONITOR and FINDOUT -- procedures developed by the MYCIN development team:

9 How MYCIN Works MONITOR (for MYCIN rules) attempts to evaluate the premise of the current rule, condition by condition. If any of the conditions is false, or indeterminate due to lack of information, the rule is rejected, and the next rule on the list of applicable rules pending in the current context is tried. The rule application succeeds when all of the conditions in the premise are deemed to be true, and the conclusion of the rule is added to the record of the current consultation:

10 Start Consider the 1st condition in the premise of the rule Gather the necessary information using the FINDOUT mechanism no Has all necessary information been gathered to decide if the condition is true yes Consider the next condition in the premise of the rule yes Is the condition TRUE? yes Are there more conditions to check? REJECT THE RULE no (or unknown) no Add the conclusion of the rule to the ongoing record of the current consultation EXIT EXIT

11 How MYCIN Works FINDOUT (Mechanism) searches for data needed by the MONITOR procedure, particularly the MYCIN 'clinical' parameters referenced in the conditions which are not known. Essentially FINDOUT gathers the information that will count for or against a particular condition in the premise of the rule under consideration. If the information required is laboratory data which the user can supply, then control returns to MONITOR and the next condition is tried. Otherwise, if there are rules which can be used to evaluate the condition, by virtue of the fact that their actions reference the relevant clinical parameter, they are listed and applied in turn using MONITOR:

12 Start no Retrieve Y = List of Rules which may aid in deducing the value of the PARAMETER Is the PARAMETER a piece of LABORATORY data? yes Ask USER for the Value of the PARAMETER Apply MONITOR to each rule in the List Y RETURN yes Is Value of the PARAMETER known Is Value of the PARAMETER known yes RETURN no Retrieve Y = List of Rules which may aid in deducing the value of the PARAMETER no Ask USER for the Value of the PARAMETER Apply MONITOR to each rule in the List Y RETURN RETURN An example of the kind of reasoning network generated by the MONITOR and FINDOUT mechanisms. Names of the clinical parameters are underlined. When a rule has multiple conditions in the premise, numbers have been included to specify the positions of the associated clinical parameters within the premise condition.

13 GOAL REGIMEN RULE 092 TREATFOR COVERFOR RULE 090 RULE IDENT INFECTLOC FEBRILE SIGNIFICANCE RULE 038 RULE 042 RULE 044 RULE108 SITE SITE COLLECT SIGNUM SITE NUMCLUS NUMPOS RULE 001 SITE RULE 041 RULE SITE SITE ABNORMAL SITE SITE ABNORMAL ASK2 ASK2

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

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

Sample Interaction: Explanation. Sample Interaction (cont d) Sample Interaction: Therapy. Sample Interaction: Diagnosis. How It Worked: Representation

Sample Interaction: Explanation. Sample Interaction (cont d) Sample Interaction: Therapy. Sample Interaction: Diagnosis. How It Worked: Representation Outline Rule-Based Systems 6.871-- Lecture 6 MYCIN Introduction»Task» Sample Interaction» Reasons for Success How It Worked» Knowledge Representation» Architecture and Control Structure» Inexact Inference»

More information

Knowledge is rarely absolutely certain. In expert systems we need a way to say that something is probably but not necessarily true.

Knowledge is rarely absolutely certain. In expert systems we need a way to say that something is probably but not necessarily true. CmSc310 Artificial Intelligence Expert Systems II 1. Reasoning under uncertainty Knowledge is rarely absolutely certain. In expert systems we need a way to say that something is probably but not necessarily

More information

Expert Systems: Simple Examples and case study

Expert Systems: Simple Examples and case study Expert Systems: Simple Examples and case study KR Chowdhary, Professor, Department of Computer Science & Engineering, MBM Engineering College, JNV University, Jodhpur A Simple Example 1.IF engine_getting_petrol

More information

Knowledge Based Systems

Knowledge Based Systems Knowledge Based Systems Human Expert A human expert is a specialist for a specific differentiated application field who creates solutions to customer problems in this respective field and supports them

More information

INFERENCING STRATEGIES

INFERENCING STRATEGIES INFERENCING STRATEGIES Table of Content Introduction Categories of Reasoning Inference Techniques Control Strategies Comparative Summary of Backward and Forward Chaining Conflict Resolution Goal Agenda

More information

Computer-Based Medical Decision Making: From MYCIN to VM

Computer-Based Medical Decision Making: From MYCIN to VM 10 Computer-Based Medical Decision Making: From MYCIN to VM Lawrence M. Fagan, Edward H. Shortliffe, and Bruce G. Buchanan We mentioned in the introduction to Chapter 5 that MYCIN provided a starting point

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

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

Work up of Respiratory & Wound Cultures:

Work up of Respiratory & Wound Cultures: Work up of Respiratory & Wound Cultures: Culture work up 2 Systematic approaches 1 Work up of Respiratory & Wound Cultures Resident flora Colonizing organisms Pathogens 2 Work up of Respiratory & Wound

More information

Neurology Diagnosis System

Neurology Diagnosis System Mid-Term Report on: Neurology Diagnosis System by Badri Adhikari, Md. Hasan Ansari, Priti Shrestha and Susma Pant {badri.aquarius, mdhasan.ansari, prits731, pant.sushma}@gmail.com A mid-term report submitted

More information

Clinical Decision Support Systems. 朱爱玲 Medical Informatics Group 24 Jan,2003

Clinical Decision Support Systems. 朱爱玲 Medical Informatics Group 24 Jan,2003 Clinical Decision Support Systems 朱爱玲 Medical Informatics Group 24 Jan,2003 Outline Introduction Medical decision making What are clinical decision support systems (CDSSs)? Historical perspective Abdominal

More information

Bacteriemia and sepsis

Bacteriemia and sepsis Bacteriemia and sepsis Case 1 An 80-year-old man is brought to the emergency room by his son, who noted that his father had become lethargic and has decreased urination over the past 4 days. The patient

More information

Mixed gram positive organisms uti

Mixed gram positive organisms uti Mixed gram positive organisms uti The Borg System is 100 % Mixed gram positive organisms uti Complicated UTIs are caused by a broader spectrum of bacteria, including Gram- positive in addition to Gramnegative

More information

Survival Skills for Researchers. Study Design

Survival Skills for Researchers. Study Design Survival Skills for Researchers Study Design Typical Process in Research Design study Collect information Generate hypotheses Analyze & interpret findings Develop tentative new theories Purpose What is

More information

Details of the Revised Therapy Algorithm

Details of the Revised Therapy Algorithm 6 Details of the Revised Therapy Algorithm William J. Clancey A program that is designed to provide sophisticated expert advice must cope with the needs of naive users who may find the advice puzzling

More information

Expert Systems Research: Modeling the Medical Decision Making Process

Expert Systems Research: Modeling the Medical Decision Making Process Scptcmbcr 1982 Also numbered: Report No. STAN-CS-82-932 Expert Systems Research: Modeling the Medical Decision Making Process by k&ad I-i. Shortliffc and Larvrcncc M. Pagan Departments of Medicine and

More information

56 The Evolution of MYCIN s Rule Form

56 The Evolution of MYCIN s Rule Form PART TWO Using Rules 3 The Evolution Rule Form of MYCIN s There is little doubt that the decision to use rules to encode infectious disease knowledge in the nascent MYCIN system was largely influenced

More information

Unit II Problem 2 Microbiology Lab: Pneumonia

Unit II Problem 2 Microbiology Lab: Pneumonia Unit II Problem 2 Microbiology Lab: Pneumonia - What are the steps needed to obtain a proper sputum specimen? You need the following: A wide-mouth labeled container. Gloves. Water. Mouth wash + tissues.

More information

URINARY TRACT INFECTIONS 3 rd Y Med Students. Prof. Dr. Asem Shehabi Faculty of Medicine, University of Jordan

URINARY TRACT INFECTIONS 3 rd Y Med Students. Prof. Dr. Asem Shehabi Faculty of Medicine, University of Jordan URINARY TRACT INFECTIONS 3 rd Y Med Students Prof. Dr. Asem Shehabi Faculty of Medicine, University of Jordan Urinary Tract Infections-1 Normal urine is sterile.. It contains fluids, salts, and waste products,

More information

-Almost one third of cases admitted to medical centers are related to urinary tract infection

-Almost one third of cases admitted to medical centers are related to urinary tract infection Urinary tract infections: -Almost one third of cases admitted to medical centers are related to urinary tract infection -Urinary tract infection and respiratory infection together encompass about fifty

More information

CPS331 Lecture: Coping with Uncertainty; Discussion of Dreyfus Reading

CPS331 Lecture: Coping with Uncertainty; Discussion of Dreyfus Reading CPS331 Lecture: Coping with Uncertainty; Discussion of Dreyfus Reading Objectives: 1. To discuss ways of handling uncertainty (probability; Mycin CF) 2. To discuss Dreyfus views on expert systems Materials:

More information

Microbial Flora of Normal Human Body Dr. Kaya Süer. Near East University Medical Faculty Infectious Diseases and Clinical Microbiology

Microbial Flora of Normal Human Body Dr. Kaya Süer. Near East University Medical Faculty Infectious Diseases and Clinical Microbiology Microbial Flora of Normal Human Body Dr. Kaya Süer Near East University Medical Faculty Infectious Diseases and Clinical Microbiology Normal Microbial Flora Skin Conjunctivae Oral Cavity Upper respiratory

More information

MICROBIOLOGY SPECIMEN COLLECTION MANUAL

MICROBIOLOGY SPECIMEN COLLECTION MANUAL Lee Memorial Health System Lee County, FL CLINICAL LABORATORY MICROBIOLOGY SPECIMEN COLLECTION MANUAL ACID FAST CULTURE Specimen Type see Specimen Chart ACID FAST STAIN see Specimen Chart Acid Fast stain

More information

31.1 Materials and Methods

31.1 Materials and Methods 31 An Evaluation Advice of MYCIN s Victor L. Yu, Lawrence M. Fagan, Sharon Wraith Bennett, William J. Clancey, A. Carlisle Scott, John F. Hannigan, Robert L. Blum, Bruce G. Buchanan, and Stanley N. Cohen

More information

URINARY TRACT INFECTIONS 3 rd Y Med Students. Prof. Dr. Asem Shehabi Faculty of Medicine, University of Jordan

URINARY TRACT INFECTIONS 3 rd Y Med Students. Prof. Dr. Asem Shehabi Faculty of Medicine, University of Jordan URINARY TRACT INFECTIONS 3 rd Y Med Students Prof. Dr. Asem Shehabi Faculty of Medicine, University of Jordan Urinary Tract Infections-1 Normal urine is sterile in urinary bladder.. It contains fluids,

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

A FRAMEWORK FOR CLINICAL DECISION SUPPORT IN INTERNAL MEDICINE A PRELIMINARY VIEW Kopecky D 1, Adlassnig K-P 1

A FRAMEWORK FOR CLINICAL DECISION SUPPORT IN INTERNAL MEDICINE A PRELIMINARY VIEW Kopecky D 1, Adlassnig K-P 1 A FRAMEWORK FOR CLINICAL DECISION SUPPORT IN INTERNAL MEDICINE A PRELIMINARY VIEW Kopecky D 1, Adlassnig K-P 1 Abstract MedFrame provides a medical institution with a set of software tools for developing

More information

Normal Flora PROF. HANAN HABIB DEPARTMENT OF PATHOLOGY COLLEGE OF MEDICINE, KSU

Normal Flora PROF. HANAN HABIB DEPARTMENT OF PATHOLOGY COLLEGE OF MEDICINE, KSU Normal Flora PROF. HANAN HABIB DEPARTMENT OF PATHOLOGY COLLEGE OF MEDICINE, KSU Objectives 1. Define the terms: Normal Flora, Resident flora, Transient flora and carrier state 2. Know the origin of normal

More information

Experimental Research in HCI. Alma Leora Culén University of Oslo, Department of Informatics, Design

Experimental Research in HCI. Alma Leora Culén University of Oslo, Department of Informatics, Design Experimental Research in HCI Alma Leora Culén University of Oslo, Department of Informatics, Design almira@ifi.uio.no INF2260/4060 1 Oslo, 15/09/16 Review Method Methodology Research methods are simply

More information

Normal Flora. CLS 212: Medical Microbiology

Normal Flora. CLS 212: Medical Microbiology Normal Flora CLS 212: Medical Microbiology Relationships between Organisms Symbiosis Permanent association between two different organisms. Neutralism Two organisms living together, and neither is affected

More information

2046: Fungal Infection Pre-Infusion Data

2046: Fungal Infection Pre-Infusion Data 2046: Fungal Infection Pre-Infusion Data Fungal infections are significant opportunistic infections affecting transplant patients. Because these infections are quite serious, it is important to collect

More information

Bacteraemia in patients receiving human cadaveric

Bacteraemia in patients receiving human cadaveric J. clin. Path., 1971, 24, 295-299 Bacteraemia in patients receiving human cadaveric renal transplants D. A. LEIGH1 From the Department of Bacteriology, The Wright-Fleming Institute, St Mary's Hospital,

More information

N ational STI M icrobiological Surveillance Programme David A. Lewis FRCP(UK) PhD

N ational STI M icrobiological Surveillance Programme David A. Lewis FRCP(UK) PhD N ational STI M icrobiological Surveillance Programme David A. Lewis FRCP(UK) PhD Sexually Transmitted Infections Reference Centre National Institute of Communicable Diseases (NHLS) South Africa Mission

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

How to interpret your urine sample results

How to interpret your urine sample results How to interpret your urine sample results Chronic UTI Info Factsheet Series Once you have submitted your urine sample for analysis, it will be sent off to the local laboratory or hospital laboratory if

More information

UNIT. Experiments and the Common Cold. Biology. Unit Description. Unit Requirements

UNIT. Experiments and the Common Cold. Biology. Unit Description. Unit Requirements UNIT Biology Experiments and the Common Cold Unit Description Content: This course is designed to familiarize the student with concepts in biology and biological research. Skills: Main Ideas and Supporting

More information

Harvard-MIT Division of Health Sciences and Technology HST.952: Computing for Biomedical Scientists. Data and Knowledge Representation Lecture 6

Harvard-MIT Division of Health Sciences and Technology HST.952: Computing for Biomedical Scientists. Data and Knowledge Representation Lecture 6 Harvard-MIT Division of Health Sciences and Technology HST.952: Computing for Biomedical Scientists Data and Knowledge Representation Lecture 6 Last Time We Talked About Medical Coding Systems UMLS Today

More information

How Does Analysis of Competing Hypotheses (ACH) Improve Intelligence Analysis?

How Does Analysis of Competing Hypotheses (ACH) Improve Intelligence Analysis? How Does Analysis of Competing Hypotheses (ACH) Improve Intelligence Analysis? Richards J. Heuer, Jr. Version 1.2, October 16, 2005 This document is from a collection of works by Richards J. Heuer, Jr.

More information

Christina Martin Kazi Russell MED INF 406 INFERENCING Session 8 Group Project November 15, 2014

Christina Martin Kazi Russell MED INF 406 INFERENCING Session 8 Group Project November 15, 2014 INFERENCING (HW 8) 1 Christina Martin Kazi Russell MED INF 406 INFERENCING Session 8 Group Project November 15, 2014 Page 2 The Clinical Decision Support System designed to utilize the Training Set data

More information

320 MBIO Microbial Diagnosis. Aljawharah F. Alabbad Noorah A. Alkubaisi 2017

320 MBIO Microbial Diagnosis. Aljawharah F. Alabbad Noorah A. Alkubaisi 2017 320 MBIO Microbial Diagnosis Aljawharah F. Alabbad Noorah A. Alkubaisi 2017 Pathogens of the Urinary tract The urinary system is composed of organs that regulate the chemical composition and volume of

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

Infection Prevention & Control Core Skills Level 2

Infection Prevention & Control Core Skills Level 2 Infection Prevention & Control Core Skills Level 2 Learning outcomes Risk assessment of patients Critical examination of the situation MRSA, CDT & CPE Ongoing challenges future-proofing infection control

More information

DR. HUDA ABO- ALEES GRAM-NEGATIVE BACILLI THE ENTERICS:

DR. HUDA ABO- ALEES GRAM-NEGATIVE BACILLI THE ENTERICS: DR. HUDA ABO- ALEES 214-2-15 GRAM-NEGATIVE BACILLI THE ENTERICS: Family Enterobacteriaceae: Genus Escherichia & Genus Klebsiella OBJECTIVES Describe the morphology & physiology for E.coli & Klebsiella

More information

Small living organism Not visible to the naked eye Must be viewed under a microscope Found everywhere in the environment, including on and in the

Small living organism Not visible to the naked eye Must be viewed under a microscope Found everywhere in the environment, including on and in the Small living organism Not visible to the naked eye Must be viewed under a microscope Found everywhere in the environment, including on and in the human body Many Microorganisms are part of normal flora

More information

Guideline for the Management of Fever and Neutropenia in Children with Cancer and/or Undergoing Hematopoietic Stem-Cell Transplantation

Guideline for the Management of Fever and Neutropenia in Children with Cancer and/or Undergoing Hematopoietic Stem-Cell Transplantation Guideline for the Management of Fever Neutropenia in Children with Cancer /or Undergoing Hematopoietic Stem-Cell Transplantation COG Supportive Care Endorsed Guidelines Click here to see all the COG Supportive

More information

Customary urine test is the dip stick and the mid-stream culture of voided urine. Up to 77% of cystitis cases are cultured

Customary urine test is the dip stick and the mid-stream culture of voided urine. Up to 77% of cystitis cases are cultured 9 million visits/year! Customary urine test is the dip stick and the mid-stream culture of voided urine. Up to 77% of cystitis cases are cultured Interpretation of the culture result has been controversial-

More information

Laboratory diagnosis of spinal tuberculosis: Past and Present. SA Patwardhan, S Joshi Abstract : Spinal tuberculosis often has an indolent course and

Laboratory diagnosis of spinal tuberculosis: Past and Present. SA Patwardhan, S Joshi Abstract : Spinal tuberculosis often has an indolent course and Laboratory diagnosis of spinal tuberculosis: Past and Present. SA Patwardhan, S Joshi Abstract : Spinal tuberculosis often has an indolent course and can be a diagnostic challenge. Timely laboratory diagnosis

More information

Best Practice Guidance 12_Version 1.2. Title: Collection of Biological Samples

Best Practice Guidance 12_Version 1.2. Title: Collection of Biological Samples This document is for guidance on the collection of biological samples that have been granted ethical approval under CUREC procedures. Certain research involving the taking of samples that consist of, or

More information

Implementation of Inference Engine in Adaptive Neuro Fuzzy Inference System to Predict and Control the Sugar Level in Diabetic Patient

Implementation of Inference Engine in Adaptive Neuro Fuzzy Inference System to Predict and Control the Sugar Level in Diabetic Patient , ISSN (Print) : 319-8613 Implementation of Inference Engine in Adaptive Neuro Fuzzy Inference System to Predict and Control the Sugar Level in Diabetic Patient M. Mayilvaganan # 1 R. Deepa * # Associate

More information

BIOSTATISTICAL METHODS

BIOSTATISTICAL METHODS BIOSTATISTICAL METHODS FOR TRANSLATIONAL & CLINICAL RESEARCH Designs on Micro Scale: DESIGNING CLINICAL RESEARCH THE ANATOMY & PHYSIOLOGY OF CLINICAL RESEARCH We form or evaluate a research or research

More information

Anamnesis via the Internet - Prospects and Pilot Results

Anamnesis via the Internet - Prospects and Pilot Results MEDINFO 2001 V. Patel et al. (Eds) Amsterdam: IOS Press 2001 IMIA. All rights reserved Anamnesis via the Internet - Prospects and Pilot Results Athanasios Emmanouil and Gunnar O. Klein Centre for Health

More information

Analysis of complex patterns of evidence in legal cases: Wigmore charts vs. Bayesian networks

Analysis of complex patterns of evidence in legal cases: Wigmore charts vs. Bayesian networks Analysis of complex patterns of evidence in legal cases: Wigmore charts vs. Bayesian networks V. Leucari October 2005 Typical features of the evidence arising from legal cases are its complex structure

More information

Latent Tuberculosis Infection Reporting Instructions for Civil Surgeons Using CalREDIE Provider Portal

Latent Tuberculosis Infection Reporting Instructions for Civil Surgeons Using CalREDIE Provider Portal Latent Tuberculosis Infection Reporting Instructions for Civil Surgeons Using CalREDIE Provider Portal Civil surgeons are required to report tuberculosis (TB) screening outcomes that result in latent TB

More information

Bacterial Infections of the Urinary System *

Bacterial Infections of the Urinary System * OpenStax-CNX module: m64804 1 Bacterial Infections of the Urinary System * Douglas Risser This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 1 Learning

More information

CERTIFICATE OF ACCREDITATION

CERTIFICATE OF ACCREDITATION CERTIFICATE OF ACCREDITATION In terms of section 22(2) (b) of the Accreditation for Conformity Assessment, Calibration and Good Laboratory Practice Act, 2006 (Act 19 of 2006), read with sections 23(1),

More information

Statistical inference provides methods for drawing conclusions about a population from sample data.

Statistical inference provides methods for drawing conclusions about a population from sample data. Chapter 14 Tests of Significance Statistical inference provides methods for drawing conclusions about a population from sample data. Two of the most common types of statistical inference: 1) Confidence

More information

Representation and Analysis of Medical Decision Problems with Influence. Diagrams

Representation and Analysis of Medical Decision Problems with Influence. Diagrams Representation and Analysis of Medical Decision Problems with Influence Diagrams Douglas K. Owens, M.D., M.Sc., VA Palo Alto Health Care System, Palo Alto, California, Section on Medical Informatics, Department

More information

Rule Based Expert System for Diagnosis of Neuromuscular Disorders

Rule Based Expert System for Diagnosis of Neuromuscular Disorders Int. J. Advanced Networking and Applications 1509 Rule Based Expert System for Diagnosis of Neuromuscular Disorders Rajdeep Borgohain Department of Computer Science and Engineering, Dibrugarh University

More information

AIM #4: DEFINE SCIENCE AND EXPLAIN THE PROCESS OF THE SCIENTIFIC METHOD

AIM #4: DEFINE SCIENCE AND EXPLAIN THE PROCESS OF THE SCIENTIFIC METHOD AIM #4: DEFINE SCIENCE AND EXPLAIN THE PROCESS OF THE SCIENTIFIC METHOD Aim #4: Define science and explain the process of the scientific method Textbook Pages: 11-21 DO NOW: IN YOUR OWN WORDS, DEFINE OBSERVATION:

More information

HOSPITAL INFECTION CONTROL

HOSPITAL INFECTION CONTROL HOSPITAL INFECTION CONTROL Objectives To be able to define hospital acquired infections discuss the sources and routes of transmission of infections in a hospital describe methods of prevention and control

More information

What Is Science? Lesson Overview. Lesson Overview. 1.1 What Is Science?

What Is Science? Lesson Overview. Lesson Overview. 1.1 What Is Science? Lesson Overview 1.1 What Science Is and Is Not What are the goals of science? One goal of science is to provide natural explanations for events in the natural world. Science also aims to use those explanations

More information

Work-up of Respiratory Specimens Now you can breathe easier

Work-up of Respiratory Specimens Now you can breathe easier 34 th Annual Meeting Southwestern Association of Clinical Microbiology Work-up of Respiratory Specimens Now you can breathe easier Yvette S. McCarter, PhD, D(ABMM) Director, Clinical Microbiology Laboratory

More information

Antibiotic Protocols for Paediatrics Steve Biko Academic Hospital

Antibiotic Protocols for Paediatrics Steve Biko Academic Hospital Antibiotic Protocols for Paediatrics Steve Biko Academic Hospital Respiratory tract infections in children Uncomplicated URTI A child with a cold should not receive an antibiotic Paracetamol (15 mg/kg/dose

More information

On the Representation of Nonmonotonic Relations in the Theory of Evidence

On the Representation of Nonmonotonic Relations in the Theory of Evidence On the Representation of Nonmonotonic Relations in the Theory of Evidence Ronald R. Yager Machine Intelligence Institute Iona College New Rochelle, NY 10801 Abstract A Dempster-Shafer belief structure

More information

Communication Research Practice Questions

Communication Research Practice Questions Communication Research Practice Questions For each of the following questions, select the best answer from the given alternative choices. Additional instructions are given as necessary. Read each question

More information

Principles of Infectious Disease Lecture #13 Dr. Gary Mumaugh

Principles of Infectious Disease Lecture #13 Dr. Gary Mumaugh Principles of Infectious Disease Lecture #13 Dr. Gary Mumaugh Terminology Pathology study of disease Etiology cause of disease Pathogenesis disease process Infection colonization by microbes Disease illness

More information

How to interpret your urine sample results

How to interpret your urine sample results How to interpret your urine sample results Chronic UTI Info Factsheet Series Once you have submitted your urine sample for analysis, it will be sent off to the local laboratory or hospital laboratory if

More information

An expert system (Autodoc) for diagnosing diseases and prescribing medication using visual basic.net

An expert system (Autodoc) for diagnosing diseases and prescribing medication using visual basic.net Information Technology Research Journal Vol.2(2), pp. 20 24, November, 2012 Available online http://resjournals.com/itj ISSN: 2026-6715 2012 International Research Journals Full Length Research Paper An

More information

EXERCISE. Proteins,Amino Acids, and Enzymes VII: Oxidase Test. Suggested Reading in Textbook. Pronunciation Guide. Materials per Student

EXERCISE. Proteins,Amino Acids, and Enzymes VII: Oxidase Test. Suggested Reading in Textbook. Pronunciation Guide. Materials per Student EXERCISE 30 Proteins,Amino Acids, SAFETY CONSIDERATIONS Be careful with the Bunsen burner flame. No mouth pipetting. The oxidase reagent is caustic. Avoid contact with eyes and skin. In case of contact,

More information

Chronic urinary tract infections icd 10

Chronic urinary tract infections icd 10 Approximate Synonyms. Acute lower urinary tract infection; Acute upper urinary tract infection; Acute urinary tract infection; Bacterial urinary infection; Bacteriuria; Bacteriuria (bacteria in urine);

More information

IP Lab Webinar 8/23/2012

IP Lab Webinar 8/23/2012 2 What Infection Preventionists need to know about the Laboratory Anne Maher, MS, M(ASCP), CIC Richard VanEnk PhD, CIC 1 Objectives Describe what the laboratory can do for you; common laboratory tests

More information

Lecture 1: Genito-urinary system. ISK

Lecture 1: Genito-urinary system. ISK Urinary Tract Infections Lecture 1: Genito-urinary system. ISK 07 08 2009. Getting Clear on the Terminology UTI Cystitis Urosepsis Asymptomatic Bacteriuria Asymptomatic UTI Pyuria Symptomatic UTI Pylonephritis

More information

At the end of this presentation, you will be able to:

At the end of this presentation, you will be able to: Infection Control At the end of this presentation, you will be able to: Identify evidence-based measures to prevent and control the transmission of infection Identify nursing actions and the application

More information

GRAM-NEGATIVE BACILLI THE ENTERICS: Family Enterobacteriaceae: Genus Escherichia & Genus Klebsiella

GRAM-NEGATIVE BACILLI THE ENTERICS: Family Enterobacteriaceae: Genus Escherichia & Genus Klebsiella DR. HUDA ABO- ALEES 214-2-15 Obgectives: GRAM-NEGATIVE BACILLI THE ENTERICS: Family Enterobacteriaceae: Genus Escherichia & Genus Klebsiella Describe the morphology & physiology for E.coli & Klebsiella

More information

Chapter 9. Tests, Procedures, and Diagnosis Codes The McGraw-Hill Companies, Inc. All rights reserved.

Chapter 9. Tests, Procedures, and Diagnosis Codes The McGraw-Hill Companies, Inc. All rights reserved. Chapter 9 Tests, Procedures, and Diagnosis Codes Chapter 9 Content: Overview Ordering A Test SpringLabsTM & Reference Lab Results Managing and Charting Tests Creating A New Test Documenting and Activating

More information

Does amoxicillin help urinary tract infections

Does amoxicillin help urinary tract infections P ford residence southampton, ny Does amoxicillin help urinary tract infections Urinary tract infections are a serious health problem affecting millions of people each year. Infections of the urinary tract

More information

Automatic Extraction of Synoptic Data. George Cernile Artificial Intelligence in Medicine AIM

Automatic Extraction of Synoptic Data. George Cernile Artificial Intelligence in Medicine AIM Automatic Extraction of Synoptic Data George Cernile Artificial Intelligence in Medicine AIM Agenda Background Technology used Demonstration Questions How often are checklist elements included in a report,

More information

EPG Clinical Guidelines

EPG Clinical Guidelines Guidelines for the Management of Febrile Young Children Neonate age 7 days Temperature > 38 C, documented at home or in the ED Complete blood count with manual differential (CBCD), urinalysis (UA), urine

More information

Sexually Transmitted Diseases. Chlamydial. infection. Questions and Answers

Sexually Transmitted Diseases. Chlamydial. infection. Questions and Answers Sexually Transmitted Diseases Chlamydial infection Questions and Answers What is chlamydial infection? It is a sexually transmitted infection caused by the bacteria Chlamydia trachomatis, being one of

More information

A Computational Theory of Belief Introspection

A Computational Theory of Belief Introspection A Computational Theory of Belief Introspection Kurt Konolige Artificial Intelligence Center SRI International Menlo Park, California 94025 Abstract Introspection is a general term covering the ability

More information

UNIT 5 MAINTENANCE SYSTEMS Urinary System Test Bank

UNIT 5 MAINTENANCE SYSTEMS Urinary System Test Bank UNIT 5 MAINTENANCE SYSTEMS Urinary System Test Bank Objective 5.05 Describe the basic functions of the urinary system. 1. Which of the following is NOT a function of the urinary system? a. Maintain body

More information

The Clinical Significance of Blood Cultures. Presented BY; Cindy Winfrey, MSN, RN, CIC, DON- LTC TM, VA- BC TM

The Clinical Significance of Blood Cultures. Presented BY; Cindy Winfrey, MSN, RN, CIC, DON- LTC TM, VA- BC TM The Clinical Significance of Blood Cultures Presented BY; Cindy Winfrey, MSN, RN, CIC, DON- LTC TM, VA- BC TM OVERVIEW Blood cultures are considered an important laboratory tool used to diagnose serious

More information

4. RED AND BLUE TOP COLLECTION SWABS WILL NO LONGER BE SUPPLIED FOR BACTERIAL CULTURE

4. RED AND BLUE TOP COLLECTION SWABS WILL NO LONGER BE SUPPLIED FOR BACTERIAL CULTURE Laboratory Testing Update Specimen Transport Changes dated 12-24-14 SEH Laboratory is making significant changes to specimen transports! The Laboratory is introducing new testing platforms along with working

More information

The Vine Assessment System by LifeCubby

The Vine Assessment System by LifeCubby The Vine Assessment System by LifeCubby A Fully Integrated Platform for Observation, Daily Reporting, Communications and Assessment For Early Childhood Professionals and the Families that they Serve Alignment

More information

Staining Technology and Bright- Field Microscope Use

Staining Technology and Bright- Field Microscope Use Staining Technology and Bright- Field Microscope Use 2 Abstract We will introduce bright-field microscope use, practice Gram staining with foodborne pathogens, and practice endospore staining with Bacillus

More information

3. Fixed-sample Clinical Trial Design

3. Fixed-sample Clinical Trial Design 3. Fixed-sample Clinical Trial Design 3. Fixed-sample clinical trial design 3.1 On choosing the sample size 3.2 Frequentist evaluation of a fixed-sample trial 3.3 Bayesian evaluation of a fixed-sample

More information

Principles of Disease and Epidemiology Chapter 14. Biology 1009 Microbiology Johnson-Summer 2003

Principles of Disease and Epidemiology Chapter 14. Biology 1009 Microbiology Johnson-Summer 2003 Principles of Disease and Epidemiology Chapter 14 Biology 1009 Microbiology Johnson-Summer 2003 Introduction Pathology, Infection and Disease Terms: Pathogen: disease causing organism Pathology: scientific

More information

Artificial Intelligence Programming Probability

Artificial Intelligence Programming Probability Artificial Intelligence Programming Probability Chris Brooks Department of Computer Science University of San Francisco Department of Computer Science University of San Francisco p.1/25 17-0: Uncertainty

More information

Management of Needlestick and Mucous Membrane Exposures To Blood/Body Fluids

Management of Needlestick and Mucous Membrane Exposures To Blood/Body Fluids Management of Needlestick and Mucous Membrane Exposures To Blood/Body Fluids August 2004 Table Of Contents Protocol - Management of Needlestick and Mucous Membrane Exposures to Blood/Body Fluids Assessment

More information

NEOSPORIN G.U. Irrigant Sterile (neomycin sulfate polymyxin B sulfate solution for irrigation)

NEOSPORIN G.U. Irrigant Sterile (neomycin sulfate polymyxin B sulfate solution for irrigation) NEOSPORIN G.U. Irrigant Sterile (neomycin sulfate polymyxin B sulfate solution for irrigation) NEOSPORIN G.U.SOLUTION NOT FOR INJECTION DESCRIPTION NEOSPORIN G.U. Irrigant is a concentrated sterile antibiotic

More information

TRICHOMONAS VAGINALIS

TRICHOMONAS VAGINALIS TRICHOMONAS VAGINALIS What s New: There are no changes to this guideline. Introduction Trichomonas vaginalis (TV) is a flagellated protozoan that is a parasite of the genital tract. Due to site specificity,

More information

PRESENTER: DENNIS NYACHAE MOSE KENYATTA UNIVERSITY

PRESENTER: DENNIS NYACHAE MOSE KENYATTA UNIVERSITY 18/8/2016 SOURCES OF MICROBIAL CONTAMINANTS IN BIOSAFETY LABORATORIES IN KENYA PRESENTER: DENNIS NYACHAE MOSE KENYATTA UNIVERSITY 1 INTRODUCTION Contamination occurs through avoidable procedural errors

More information

MICROBIOLOGICAL TESTING IN PICU

MICROBIOLOGICAL TESTING IN PICU MICROBIOLOGICAL TESTING IN PICU This is a guideline for the taking of microbiological samples in PICU to diagnose or exclude infection. The diagnosis of infection requires: Ruling out non-infectious causes

More information

E-BOOK # E COLI IN WELL WATER EBOOK

E-BOOK # E COLI IN WELL WATER EBOOK 02 February, 2018 E-BOOK # E COLI IN WELL WATER EBOOK Document Filetype: PDF 332.93 KB 0 E-BOOK # E COLI IN WELL WATER EBOOK Addresses the presence of total coliforms and E. Most common water quality problem

More information

Corporate Online. Using Term Deposits

Corporate Online. Using Term Deposits Corporate Online. Using Term Deposits About this Guide About Corporate Online Westpac Corporate Online is an internet-based electronic platform, providing a single point of entry to a suite of online transactional

More information

Risk Mediation in Association Rules:

Risk Mediation in Association Rules: Risk Mediation in Association Rules: The Case of Decision Support in Medication Review Michiel C. Meulendijk 1, Marco R. Spruit 2, Sjaak Brinkkemper 2 1 Department of Public Health and Primary Care, Leiden

More information

ISSN (PRINT): , (ONLINE): , VOLUME-5, ISSUE-5,

ISSN (PRINT): , (ONLINE): , VOLUME-5, ISSUE-5, A SURVEY PAPER ON IMPLEMENTATION OF HUMAN INFORMATION PROCESSING SYSTEM IN ARTIFICIAL INTELLIGENCE BASED MACHINES Sheher Banu 1, Girish HP 2 Department of ECE, MVJCE, Bangalore Abstract Processing of information

More information

Kyabaggu D, 2 Ejobi F 3* Olila D

Kyabaggu D, 2 Ejobi F 3* Olila D The sensitivities to first-line antibiotic therapy of the common urinary tract bacterial infections detected in urine samples at a hospital in metropolitan Kampala (Uganda) 1 Kyabaggu D, 2 Ejobi F 3* Olila

More information