Tutorial ADAPT Case study 1. Data sampling / error model. Yared Paalvast Yvonne Rozendaal

Size: px
Start display at page:

Download "Tutorial ADAPT Case study 1. Data sampling / error model. Yared Paalvast Yvonne Rozendaal"

Transcription

1 Tutorial ADAPT Yared Paalvast Yvonne Rozendaal Case study 1. Data sampling / error model 1.1 Visualize raw data (dataset1a.mat) time data: t concentration data: G 1.2 Linear interpolation: interpolate in time between data points Such that you obtain data at every minute 1.3 Repeat 1.2 using smooth interpolation (cubic smoothing spline) 1.4 Take the standard deviation into account: sample first from data points as if from a normal distributed (use given mean and standard deviation in the data), then interpolate in time as well. 1.5 Now use dataset1b.mat (same as 1 but with less data points) and repeat the questions above. What are the effects of the number of time points/sampling frequencies on the dynamics/kinetics of the obtained curves?

2 Case study 2. Minimal glucose model Minimal glucose model (1) describing plasma glucose concentrations and insulin action upon an Oral Glucose Tolerance Test (OGTT). This model structure is schematically visualized below: The corresponding ODEs are as follows: dg Ra -(p1 + X) * G + p1 * Gb + dt Vg dx dt -p2 * X + p3 * I In which G represents glucose, X insulin action, Gb basal glucose, Ra rate of appearance of exogenous glucose, Vg the distribution volume for glucose and I the measured insulin concentration in the plasma. p1, p2 and p3 are the parameters that govern the dynamics and output of the model. The rate of exogenous glucose appearance in the plasma is defined using an exponential decaying function(2): ( 1) Ra * ( ke ) * t * exp( ( ke* t) ) * D in which k e represents the gastric emptying rate, σ a shape parameter and D the ingested carbohydrate dose. The ODE model is implemented in MATLAB and provided in ODE_min_gluc_model.m. OGTT response data (3) of obese normal glucose tolerant (NGT) and type 2 diabetes (T2D) patients can be loaded through: data = load_data2('ngt'); data = load_data2('t2d'); Data fields can be obtained through: time: data.t mean glucose data: data.g_mean standard deviation of glucose data: data.g_sd mean insulin data: data.i_mean standard deviation of insulin data: data.i_sd

3 2.1 Add insulin as input to the provided m-file. Keep in mind that you need to interpolate the insulin data before it can be used in the model. In the data, only measurements are included at t= 0,15,30,45,60,90,120,180,240 min. 2.2 When we now want to run the model and perform simulations with it, we have to define values for the model parameters. Simulate the model with the following parameter values as initial guess: p1 = 1e-2; p2 = 1e-2; p3 = 1e-2; k_e = 1e-1; σ = 1; Assume that the insulin action (X) is zero at t=0 and use the following values for the model constants: Gb = data.g_mean(1), Vg = 17, D = 40e3. How does the model output correspond to the data? 2.3 Define and implement a (general) objective function. With this function you define how well the model output corresponds to the measured glucose data. Or, in other words, what the difference (error) is between the model and data. 2.4 Optimize the model according to the objective function, i.e. estimate parameter values such that the model resembles the data. 2.5 Add an additional penalty (constraint) to the objective function: assure that the area under the Ra curve (AUC) is equivalent (or at least in the same order of magnitude) to the given carbohydrate dose. 2.6 Compute the insulin sensitivity for both NGT and T2D data. Insulin sensitivity, in this model, is defined as: SI = p3/p2 What are the differences in insulin sensitivity between these two groups? 2.7 What if less time points are included in the data (especially around peak time)? What effect would this have on the optimization procedure?

4 Case study 3. Murine cholesterol model Now moving on to a more complex model describing cholesterol and lipoprotein metabolism in mice upon pharmacological activation of the Liver X receptor. This is the case for which ADAPT was developed initially by Tiemann et al. (4), to unravel which processes were causing the adaptations seen upon LXR activation. 3.1 To initialize the ADAPT package, run setup.m 3.2 To be able to speed up simulations, we make use of compilers to convert ODE models to MEX files (Matlab executables). For this purpose, one needs a software development kit (available at e.g. Open MATLAB and type cd $PARSER$\CVode to go to the directory where the toolbox is extracted. Here you type edit choosecompiler. Set compiler, to the compiler you wish to use (default=1). Depending on which compiler you choose, there are various options to set. Subsequently we need to set various paths, so the toolbox can find all required files. First directory is the parser directory. Set parserdir to the appropriate path $PARSER$. Note that it is important that you end this line with a backslash. (Further instructions can be found at Instructions.pdf in the odemex folder) Otherwise, one can choose to perform simulations and run ADAPT without the MEX compilation through setting: model.options.usemex = 0; in the run files

5 The necessary model files are located in the folder model -> Tiemann Run model using traditional simulation (steady state model): runtiemann.m model.options.numtimesteps = 1; 3.4 Now the model using the ADAPT method through increasing the number of time steps. Why do you think is ADAPT necessary to simulate the data? 3.5 Remove flux data from data set: what effects do this have on the model output? You can do this by removing the specific data components (DATASET.FIELDS) in tiemanndata.m 3.6 Apart from the data that is currently provided in the model, gene expression data is available as well. Hypothesize on how this data could be used to verify the modelling results, e.g. do they confirm the trend in the predicted flux data? Think about the general aspects of this course: how can you integrate multiple types of data (in ADAPT)?

6 References 1. Cobelli C, Dalla Man C, Toffolo G, Basu R, Vella A, Rizza R. The oral minimal model method. Diabetes. 2014;63: Elashoff JD, Reedy TJ, Meyer JH. Analysis of gastric emptying data. Gastroenterology. 1982;83: Jørgensen NB, Jacobsen SH, Dirksen C, Bojsen-Møller KN, Naver L, Hvolris L, Clausen TR, Wulff BS, Worm D, et al. Acute and long-term effects of Roux-en-Y gastric bypass on glucose metabolism in subjects with Type 2 diabetes and normal glucose tolerance. Am J Physiol Endocrinol Metab. 2012;303:E Tiemann CA, Vanlier J, Oosterveer MH, Groen AK, Hilbers PAJ, van Riel NAW. Parameter trajectory analysis to identify treatment effects of pharmacological interventions. PLoS Comput Biol. 2013;9:e

Electronic Supplementary Material to the article entitled Altered pattern of the

Electronic Supplementary Material to the article entitled Altered pattern of the Electronic Supplementary Material to the article entitled Altered pattern of the incretin effect as assessed by modelling in individuals with glucose tolerance ranging from normal to diabetic Integrated

More information

Agus Kartono, Egha Sabila Putri, Ardian Arif Setiawan, Heriyanto Syafutra and Tony Sumaryada

Agus Kartono, Egha Sabila Putri, Ardian Arif Setiawan, Heriyanto Syafutra and Tony Sumaryada American Journal of Applied Sciences Original Research Paper Study of Modified Oral Minimal Model using n-order Decay Rate of Plasma Insulin for the Oral Glucose Tolerance Test in Subjects with Normal,

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK A SLIDING MODE CONTROL ALGORITHM FOR ARTIFICIAL PANCREAS NIRLIPTA RANJAN MOHANTY

More information

The oral meal or oral glucose tolerance test. Original Article Two-Hour Seven-Sample Oral Glucose Tolerance Test and Meal Protocol

The oral meal or oral glucose tolerance test. Original Article Two-Hour Seven-Sample Oral Glucose Tolerance Test and Meal Protocol Original Article Two-Hour Seven-Sample Oral Glucose Tolerance Test and Meal Protocol Minimal Model Assessment of -Cell Responsivity and Insulin Sensitivity in Nondiabetic Individuals Chiara Dalla Man,

More information

Appetite, Glycemia and Entero-Insular Hormone Responses Differ Between Oral, Gastric-Remnant and Duodenal Administration of a Mixed Meal Test After

Appetite, Glycemia and Entero-Insular Hormone Responses Differ Between Oral, Gastric-Remnant and Duodenal Administration of a Mixed Meal Test After Appetite, Glycemia and Entero-Insular Hormone Responses Differ Between Oral, Gastric-Remnant and Duodenal Administration of a Mixed Meal Test After Roux-en-Y Gastric Bypass June 2018 How a surgical complication

More information

BARIATRIC SURGERY AND TYPE 2 DIABETES MELLITUS

BARIATRIC SURGERY AND TYPE 2 DIABETES MELLITUS BARIATRIC SURGERY AND TYPE 2 DIABETES MELLITUS George Vl Valsamakis European Scope Fellow Obesity Visiting iti Associate Prof Warwick Medical School Diabetes is an increasing healthcare epidemic throughout

More information

Parameter estimation in non-equidistantly sampled nonlinear state space models; a Matlab implementation

Parameter estimation in non-equidistantly sampled nonlinear state space models; a Matlab implementation Parameter estimation in non-equidistantly sampled nonlinear state space models; a Matlab implementation by Natal van Riel, Eindhoven University of Technology 1 Model structure and simulation The model

More information

SIMULATIONS OF A MODEL-BASED FUZZY CONTROL SYSTEM FOR GLYCEMIC CONTROL IN DIABETES

SIMULATIONS OF A MODEL-BASED FUZZY CONTROL SYSTEM FOR GLYCEMIC CONTROL IN DIABETES Bulletin of the Transilvania University of Braşov Vol. 8 (57) No. 2-2015 Series I: Engineering Sciences SIMULATIONS OF A MODEL-BASED FUZZY CONTROL SYSTEM FOR GLYCEMIC CONTROL IN DIABETES C. BOLDIȘOR 1

More information

CSDplotter user guide Klas H. Pettersen

CSDplotter user guide Klas H. Pettersen CSDplotter user guide Klas H. Pettersen [CSDplotter user guide] [0.1.1] [version: 23/05-2006] 1 Table of Contents Copyright...3 Feedback... 3 Overview... 3 Downloading and installation...3 Pre-processing

More information

An integrated glucose-insulin model to describe oral glucose tolerance test data in healthy volunteers

An integrated glucose-insulin model to describe oral glucose tolerance test data in healthy volunteers Title: An integrated glucose-insulin model to describe oral glucose tolerance test data in healthy volunteers Authors: Hanna E. Silber 1, Nicolas Frey 2 and Mats O. Karlsson 1 Address: 1 Department of

More information

28 Regulation of Fasting and Post-

28 Regulation of Fasting and Post- 28 Regulation of Fasting and Post- Prandial Glucose Metabolism Keywords: Type 2 Diabetes, endogenous glucose production, splanchnic glucose uptake, gluconeo-genesis, glycogenolysis, glucose effectiveness.

More information

Active Insulin Infusion Using Fuzzy-Based Closed-loop Control

Active Insulin Infusion Using Fuzzy-Based Closed-loop Control Active Insulin Infusion Using Fuzzy-Based Closed-loop Control Sh. Yasini, M. B. Naghibi-Sistani, A. Karimpour Department of Electrical Engineering, Ferdowsi University of Mashhad, Mashhad, Iran E-mail:

More information

IDENTIFICATION OF LINEAR DYNAMIC MODELS FOR TYPE 1 DIABETES: A SIMULATION STUDY

IDENTIFICATION OF LINEAR DYNAMIC MODELS FOR TYPE 1 DIABETES: A SIMULATION STUDY IDENTIFICATION OF LINEAR DYNAMIC MODELS FOR TYPE 1 DIABETES: A SIMULATION STUDY Daniel A. Finan Howard Zisser Lois Jovanovic Wendy C. Bevier Dale E. Seborg Department of Chemical Engineering University

More information

CLINICAL TRIAL SIMULATION & ANALYSIS

CLINICAL TRIAL SIMULATION & ANALYSIS 1 CLINICAL TRIAL SIMULATION & ANALYSIS Nick Holford Dept Pharmacology & Clinical Pharmacology University of Auckland, New Zealand NHG Holford, 217, all rights reserved. 2 SIMULATION Visualise the expected

More information

CME Post Test. D. Treatment with insulin E. Age older than 55 years

CME Post Test. D. Treatment with insulin E. Age older than 55 years CME Post Test Translational Endocrinology & Metabolism: Metabolic Surgery Update Please select the best answer to each question on the online answer sheet. Go to http://www.endojournals.org/translational/

More information

Chapter 3: Linear & Non-Linear Interaction Models

Chapter 3: Linear & Non-Linear Interaction Models Chapter 3: 155/226 Chapter develops the models above to examine models which involve interacting species or quantities. Models lead to simultaneous differential equations for coupled quantites due to the

More information

The Chemostat: Stability at Steady States. Chapter 5: Linear & Non-Linear Interaction Models. So, in dimensional form, α 1 > 1 corresponds to

The Chemostat: Stability at Steady States. Chapter 5: Linear & Non-Linear Interaction Models. So, in dimensional form, α 1 > 1 corresponds to Introduction & Simple Models Logistic Growth Models The Chemostat: Stability at Steady States 1 So, in dimensional form, α 1 > 1 corresponds to K max < V F. As K max is max bacterial repro rate with unlimited

More information

OUTLIER SUBJECTS PROTOCOL (art_groupoutlier)

OUTLIER SUBJECTS PROTOCOL (art_groupoutlier) OUTLIER SUBJECTS PROTOCOL (art_groupoutlier) Paul K. Mazaika 2/23/2009 Outlier subjects are a problem in fmri data sets for clinical populations. This protocol and program are a method to identify outlier

More information

CRITERIA FOR USE. A GRAPHICAL EXPLANATION OF BI-VARIATE (2 VARIABLE) REGRESSION ANALYSISSys

CRITERIA FOR USE. A GRAPHICAL EXPLANATION OF BI-VARIATE (2 VARIABLE) REGRESSION ANALYSISSys Multiple Regression Analysis 1 CRITERIA FOR USE Multiple regression analysis is used to test the effects of n independent (predictor) variables on a single dependent (criterion) variable. Regression tests

More information

Understand the physiological determinants of extent and rate of absorption

Understand the physiological determinants of extent and rate of absorption Absorption and Half-Life Nick Holford Dept Pharmacology & Clinical Pharmacology University of Auckland, New Zealand Objectives Understand the physiological determinants of extent and rate of absorption

More information

A Closed-loop Artificial Pancreas based on MPC: human-friendly identification and automatic meal disturbance rejection

A Closed-loop Artificial Pancreas based on MPC: human-friendly identification and automatic meal disturbance rejection Proceedings of the 17th World Congress The International Federation of Automatic Control Seoul, Korea, July 6-11, 8 A Closed-loop Artificial Pancreas based on MPC: human-friendly identification and automatic

More information

J. A. Mayfield et al. FIGURE S1. Methionine Salvage. Methylthioadenosine. Methionine. AdoMet. Folate Biosynthesis. Methylation SAH.

J. A. Mayfield et al. FIGURE S1. Methionine Salvage. Methylthioadenosine. Methionine. AdoMet. Folate Biosynthesis. Methylation SAH. FIGURE S1 Methionine Salvage Methionine Methylthioadenosine AdoMet Folate Biosynthesis Methylation SAH Homocysteine Homocystine CBS Cystathionine Cysteine Glutathione Figure S1 Biochemical pathway of relevant

More information

Carbohydrate Ratio Optimization and Adaptation Algorithm. Supplementary Figure 1. Schematic showing components of the closed-loop system.

Carbohydrate Ratio Optimization and Adaptation Algorithm. Supplementary Figure 1. Schematic showing components of the closed-loop system. Basal Profile Adaptation Algorithm Carbohydrate Ratio Optimization and Adaptation Algorithm Supplementary Figure 1. Schematic showing components of the closed-loop system. The insulin pump and Dexcom G4

More information

Supplementary Online Content

Supplementary Online Content Supplementary Online Content Klebanoff MJ, Chhatwal J, Nudel JD, Corey KE, Kaplan LM, Hur C. Cost-effectiveness of bariatric surgery in adolescents with obesity. JAMA Surg. Published online October 26,

More information

EHS QUICKSTART GUIDE RTLAB / CPU SECTION EFPGASIM TOOLBOX.

EHS QUICKSTART GUIDE RTLAB / CPU SECTION EFPGASIM TOOLBOX. EHS QUICKSTART GUIDE EFPGASIM TOOLBOX RTLAB / CPU SECTION www.opal-rt.com 1751 Richardson, suite 2525 Montréal (Québec) Canada H3K 1G6 www.opal-rt.com 2017 All rights reserved Printed in Canada Contents

More information

FIRM. Full Iterative Relaxation Matrix program

FIRM. Full Iterative Relaxation Matrix program FIRM Full Iterative Relaxation Matrix program FIRM is a flexible program for calculating NOEs and back-calculated distance constraints using the full relaxation matrix approach. FIRM is an interactive

More information

Computational assessment of insulin secretion and insulin sensitivity from 2-h oral glucose tolerance tests for clinical use for type 2 diabetes

Computational assessment of insulin secretion and insulin sensitivity from 2-h oral glucose tolerance tests for clinical use for type 2 diabetes J Physiol Sci (211) 61:321 33 DOI 1.17/s12576-11-153-z ORIGINAL PAPER Computational assessment of insulin secretion and insulin sensitivity from 2-h oral glucose tolerance tests for clinical use for type

More information

Bistability of Beta- Cell Mass in Type 2 Diabetes

Bistability of Beta- Cell Mass in Type 2 Diabetes Bistability of Beta- Cell Mass in Type 2 Diabetes Arthur Sherman and Joon Ha Laboratory of Biological Modeling NIDDK, NaEonal InsEtutes of Health Bethesda, MD USA 1 What is Insulin? A key hormone to regulate

More information

Outline. Model Development GLUCOSIM. Conventional Feedback and Model-Based Control of Blood Glucose Level in Type-I Diabetes Mellitus

Outline. Model Development GLUCOSIM. Conventional Feedback and Model-Based Control of Blood Glucose Level in Type-I Diabetes Mellitus Conventional Feedback and Model-Based Control of Blood Glucose Level in Type-I Diabetes Mellitus Barış Ağar, Gülnur Birol*, Ali Çınar Department of Chemical and Environmental Engineering Illinois Institute

More information

Linear Regression in SAS

Linear Regression in SAS 1 Suppose we wish to examine factors that predict patient s hemoglobin levels. Simulated data for six patients is used throughout this tutorial. data hgb_data; input id age race $ bmi hgb; cards; 21 25

More information

Data processing software for TGI/TGE series

Data processing software for TGI/TGE series 1/19 1. Overview Used with TGI or TGE series tensile and compression testing machines, the software enables efficient static strength testing in single tests, cyclical tests, or controlled (customized)

More information

An event-based point of view on the control of insulin-dependent diabetes

An event-based point of view on the control of insulin-dependent diabetes An event-based point of view on the control of insulin-dependent diabetes Brigitte Bidégaray-Fesquet Laboratoire Jean Kuntzmann Univ. Grenoble Alpes, France Réunion e-baccuss September 4th 20 Réunion e-baccuss,

More information

Study Registration for the KPU Study Registry

Study Registration for the KPU Study Registry KPU Registry ID Number: 1031 Date Submitted: 15th March 2017 Study Registration for the KPU Study Registry 1. The title or name of the experiment (for listing the experiment in the registry). Exact Replication

More information

Modeling Type One Diabetes with a Linear Response Function Based Model

Modeling Type One Diabetes with a Linear Response Function Based Model Modeling Type One Diabetes with a Linear Response Function Based Model Physics Honors Thesis Matthew Bauerle Advisor: Prof. Roman Vershynin Physics Honors Thesis July 29, 2016 Abstract Type one diabetes

More information

Effect of macronutrients and mixed meals on incretin hormone secretion and islet cell function

Effect of macronutrients and mixed meals on incretin hormone secretion and islet cell function Effect of macronutrients and mixed meals on incretin hormone secretion and islet cell function Background. Following meal ingestion, several hormones are released from the gastrointestinal tract. Some

More information

Pharmacokinetics Overview

Pharmacokinetics Overview Pharmacokinetics Overview Disclaimer: This handout and the associated lectures are intended as a very superficial overview of pharmacokinetics. Summary of Important Terms and Concepts - Absorption, peak

More information

Elevated Serum Levels of Adropin in Patients with Type 2 Diabetes Mellitus and its Association with

Elevated Serum Levels of Adropin in Patients with Type 2 Diabetes Mellitus and its Association with Elevated Serum Levels of Adropin in Patients with Type 2 Diabetes Mellitus and its Association with Insulin Resistance Mehrnoosh Shanaki, Ph.D. Assistant Professor of Clinical Biochemistry Shahid Beheshti

More information

Short-term Effects of Laparoscopic Adjustable Gastric Banding Versus Roux-en-Y Gastric Bypass Diabetes Care 2016;39: DOI: 10.

Short-term Effects of Laparoscopic Adjustable Gastric Banding Versus Roux-en-Y Gastric Bypass Diabetes Care 2016;39: DOI: 10. Diabetes Care Volume 39, November 2016 1925 Short-term Effects of Laparoscopic Adjustable Gastric Banding Versus Roux-en-Y Gastric Bypass Diabetes Care 2016;39:1925 1931 DOI: 10.2337/dc15-2823 Amalia Gastaldelli,

More information

Accurate Measurement of Postprandial Glucose Turnover: Why Is It Difficult and How Can It Be Done (Relatively) Simply?

Accurate Measurement of Postprandial Glucose Turnover: Why Is It Difficult and How Can It Be Done (Relatively) Simply? Diabetes Volume 65, May 2016 1133 Robert A. Rizza, 1 Gianna Toffolo, 2 and Claudio Cobelli 2 Accurate Measurement of Postprandial Glucose Turnover: Why Is It Difficult and How Can It Be Done (Relatively)

More information

AGENDA for 10/31/13 AGENDA: HOMEWORK: Due end of period. Due Fri, OBJECTIVES:

AGENDA for 10/31/13 AGENDA: HOMEWORK: Due end of period. Due Fri, OBJECTIVES: AGENDA for 10/31/13 AGENDA: 1. 2.1.1: Diagnosing Diabetes Part 2 Glucose Tolerance Testing Part 3 Insulin Level Testing OBJECTIVES: 1. Make an initial diagnosis of diabetes and characterize the disease

More information

Glucose tolerance status was defined as a binary trait: 0 for NGT subjects, and 1 for IFG/IGT

Glucose tolerance status was defined as a binary trait: 0 for NGT subjects, and 1 for IFG/IGT ESM Methods: Modeling the OGTT Curve Glucose tolerance status was defined as a binary trait: 0 for NGT subjects, and for IFG/IGT subjects. Peak-wise classifications were based on the number of incline

More information

QuantiPhi for RL78 and MICON Racing RL78

QuantiPhi for RL78 and MICON Racing RL78 QuantiPhi for RL78 and MICON Racing RL78 Description: Using cutting-edge model-based design tools, you will design a strategy for a Renesas MICON car, a miniature, autonomous electric vehicle. You will

More information

Electromyography II Laboratory (Hand Dynamometer Transducer)

Electromyography II Laboratory (Hand Dynamometer Transducer) (Hand Dynamometer Transducer) Introduction As described in the Electromyography I laboratory session, electromyography (EMG) is an electrical signal that can be recorded with electrodes placed on the surface

More information

Short-Term Insulin Requirements Following Gastric Bypass Surgery in Severely Obese Women with Type 1 Diabetes

Short-Term Insulin Requirements Following Gastric Bypass Surgery in Severely Obese Women with Type 1 Diabetes Short-Term Insulin Requirements Following Gastric Bypass Surgery in Severely Obese Women with Type 1 Diabetes The Harvard community has made this article openly available. Please share how this access

More information

CoreModels Glucose-Insulin Model A CORE LEARNING GOALS ACTIVITY FOR SCIENCE AND MATHEMATICS

CoreModels Glucose-Insulin Model A CORE LEARNING GOALS ACTIVITY FOR SCIENCE AND MATHEMATICS CoreModels Glucose-Insulin Model A CORE LEARNING GOALS ACTIVITY FOR SCIENCE AND MATHEMATICS Summary Students use two prebuilt STELLA models to investigate the relationship between the amount of glucose

More information

Project for Math. 224 DETECTION OF DIABETES

Project for Math. 224 DETECTION OF DIABETES Project for Math. 224 DETECTION OF DIABETES Diabetes is a disease of metabolism which is characterized by too much sugar in the blood and urine. Because of the lack of insulin (a hormone), the patient

More information

Logistic Regression Predicting the Chances of Coronary Heart Disease. Multivariate Solutions

Logistic Regression Predicting the Chances of Coronary Heart Disease. Multivariate Solutions Logistic Regression Predicting the Chances of Coronary Heart Disease Multivariate Solutions What is Logistic Regression? Logistic regression in a nutshell: Logistic regression is used for prediction of

More information

Model Reference Adaptive Control of Glucose in Type 1 Diabetics: A Simulation Study

Model Reference Adaptive Control of Glucose in Type 1 Diabetics: A Simulation Study Preprints of the 19th World Congress The International Federation of Automatic Control Model Reference Adaptive Control of Glucose in Type 1 Diabetics: A Simulation Study Marián Tárník Eva Miklovičová

More information

Title: Assessment of the post-exercise glycemic response to food: considering prior

Title: Assessment of the post-exercise glycemic response to food: considering prior Title: Assessment of the post-exercise glycemic response to food: considering prior nutritional status. Authors: Javier T. Gonzalez BSc. MRes., and Emma J. Stevenson BSc. Phd. Brain, Performance and Nutrition

More information

Chapter 3: Describing Relationships

Chapter 3: Describing Relationships Chapter 3: Describing Relationships Objectives: Students will: Construct and interpret a scatterplot for a set of bivariate data. Compute and interpret the correlation, r, between two variables. Demonstrate

More information

VIRTUAL PATIENTS DERIVED FROM THE

VIRTUAL PATIENTS DERIVED FROM THE VIRTUAL PATIENTS DERIVED FROM THE CARELINK DATABASE Benyamin Grosman PhD Senior Principle Scientist Medtronic Diabetes WHY VIRTUAL PATIENT MODELING? Reduce the cost of clinical trials Use models in conjunction

More information

Numerical investigation of phase transition in a cellular network and disease onset

Numerical investigation of phase transition in a cellular network and disease onset Numerical investigation of phase transition in a cellular network and disease onset Xujing Wang, Associate Professor Dept of Physics xujingw@uab.edu 934-8186 The question: Is (chronic) disease onset a

More information

Web Feature Services Tutorial

Web Feature Services Tutorial Southeast Alaska GIS Library Web Feature Services Tutorial Prepared By Mike Plivelich Version 0.2 Status Draft Updates Continual Release Date June 2010 1 TABLE OF CONTENTS Page # INTRODUCTION...3 PURPOSE:...

More information

Cohort 2. Age, years 41.0 (10.2) Diabetes duration, years 26.5 (15.8)

Cohort 2. Age, years 41.0 (10.2) Diabetes duration, years 26.5 (15.8) Supplementary Table. Participant characteristics in cohort Cohort Number Sex, Male Female Age, years. (.) Diabetes duration, years.5 (5.) BMI, kg.m. (3.) HbA c, % mmol.mol. (.7) () C-peptide, nmol.l.3

More information

The Mediterranean Diet: HOW and WHY It Works So Well for T2DM

The Mediterranean Diet: HOW and WHY It Works So Well for T2DM The Mediterranean Diet: HOW and WHY It Works So Well for T2DM Susan L. Barlow, RD, CDE. Objectives 1. Discuss the effects of meal size on GLP-1 concentrations. 2. Compare and contrast the specific effects

More information

Study Registration for the KPU Study Registry

Study Registration for the KPU Study Registry KPU Registry ID Number: 1022 Date submitted: 21st March 2016 Study Registration for the KPU Study Registry 1. The title or name of the experiment (for listing the experiment in the registry). Correlational

More information

Gamma Variate Analysis of Insulin Kinetics in Type 2 Diabetes

Gamma Variate Analysis of Insulin Kinetics in Type 2 Diabetes Gamma Variate Analysis of Insulin Kinetics in Type 2 Diabetes Anthony Shannon Faculty of Engineering & IT, University of Technology Sydney, NSW 2007, Australia PO Box 314, Balgowlah, NSW 2093, Australia

More information

Cerebral Cortex. Edmund T. Rolls. Principles of Operation. Presubiculum. Subiculum F S D. Neocortex. PHG & Perirhinal. CA1 Fornix CA3 S D

Cerebral Cortex. Edmund T. Rolls. Principles of Operation. Presubiculum. Subiculum F S D. Neocortex. PHG & Perirhinal. CA1 Fornix CA3 S D Cerebral Cortex Principles of Operation Edmund T. Rolls F S D Neocortex S D PHG & Perirhinal 2 3 5 pp Ento rhinal DG Subiculum Presubiculum mf CA3 CA1 Fornix Appendix 4 Simulation software for neuronal

More information

Management of Type 2 Diabetes

Management of Type 2 Diabetes Management of Type 2 Diabetes Pathophysiology Insulin resistance and relative insulin deficiency/ defective secretion Not immune mediated No evidence of β cell destruction Increased risk with age, obesity

More information

Part I. Boolean modelling exercises

Part I. Boolean modelling exercises Part I. Boolean modelling exercises. Glucose repression of Icl in yeast In yeast Saccharomyces cerevisiae, expression of enzyme Icl (isocitrate lyase-, involved in the gluconeogenesis pathway) is important

More information

Early Learning vs Early Variability 1.5 r = p = Early Learning r = p = e 005. Early Learning 0.

Early Learning vs Early Variability 1.5 r = p = Early Learning r = p = e 005. Early Learning 0. The temporal structure of motor variability is dynamically regulated and predicts individual differences in motor learning ability Howard Wu *, Yohsuke Miyamoto *, Luis Nicolas Gonzales-Castro, Bence P.

More information

Blood glucose concentrations in healthy humans

Blood glucose concentrations in healthy humans ORIGINAL ARTICLE Effect of Glycemia on Plasma Incretins and the Incretin Effect During Oral Glucose Tolerance Test Marzieh Salehi, 1 Benedict Aulinger, 1 and David A. D Alessio 1,2 The incretin effect,

More information

Explain how the normal mice prevented their blood glucose concentration falling when they had not eaten for 48 hours

Explain how the normal mice prevented their blood glucose concentration falling when they had not eaten for 48 hours Q1.Scientists investigated the control of blood glucose concentration in mice. They kept a group of normal mice without food for 48 hours. After 48 hours, the blood glucose concentrations of the mice were

More information

Quantitative indexes of -cell function during graded up&down glucose infusion from C-peptide minimal models

Quantitative indexes of -cell function during graded up&down glucose infusion from C-peptide minimal models Am J Physiol Endocrinol Metab 280: E2 E10, 2001. Quantitative indexes of -cell function during graded up&down glucose infusion from C-peptide minimal models GIANNA TOFFOLO, 1 ELENA BREDA, 1 MELISSA K.

More information

7 Grip aperture and target shape

7 Grip aperture and target shape 7 Grip aperture and target shape Based on: Verheij R, Brenner E, Smeets JBJ. The influence of target object shape on maximum grip aperture in human grasping movements. Exp Brain Res, In revision 103 Introduction

More information

UMBC REU Site: Computational Simulations of Pancreatic Beta Cells

UMBC REU Site: Computational Simulations of Pancreatic Beta Cells UMBC REU Site: Computational Simulations of Pancreatic Beta Cells Sidafa Conde 1, Teresa Lebair 2, Christopher Raastad 3, Virginia Smith 4 Kyle Stern, 5 David Trott 5 Dr. Matthias Gobbert 5, Dr. Bradford

More information

Evaluation of a glomerular filtration term in the DISST model to capture the glucose pharmacodynamics of an insulin resistant cohort

Evaluation of a glomerular filtration term in the DISST model to capture the glucose pharmacodynamics of an insulin resistant cohort Evaluation of a glomerular filtration term in the DISST model to capture the glucose pharmacodynamics of an insulin resistant cohort Paul D Docherty J Geoffrey Chase Thomas F Lotz Jeremy D Krebs Study

More information

Step 3 Tutorial #3: Obtaining equations for scoring new cases in an advanced example with quadratic term

Step 3 Tutorial #3: Obtaining equations for scoring new cases in an advanced example with quadratic term Step 3 Tutorial #3: Obtaining equations for scoring new cases in an advanced example with quadratic term DemoData = diabetes.lgf, diabetes.dat, data5.dat We begin by opening a saved 3-class latent class

More information

Human Creatinine Urinary Detection Kit

Human Creatinine Urinary Detection Kit Human Creatinine Urinary CATALOG NO: IRAAKT2509 Detection Kit LOT NO: SAMPLE INTENDED USE The Urinary Creatinine kit is designed to quantitatively measure creatinine present in urine samples. BACKGROUND

More information

Enzyme Analysis using Tyrosinase. Evaluation copy

Enzyme Analysis using Tyrosinase. Evaluation copy Enzyme Analysis using Tyrosinase Computer 15 Enzymes are molecules that regulate the chemical reactions that occur in all living organisms. Almost all enzymes are globular proteins that act as catalysts,

More information

A Diabetes minimal model for Oral Glucose Tolerance Tests

A Diabetes minimal model for Oral Glucose Tolerance Tests arxiv:1601.04753v1 [stat.ap] 18 Jan 2016 A Diabetes minimal model for Oral Glucose Tolerance Tests J. Andrés Christen a, Marcos Capistrán a, Adriana Monroy b, Silvestre Alavez c, Silvia Quintana Vargas

More information

Multilevel data analysis

Multilevel data analysis Multilevel data analysis TUTORIAL 1 1 1 Multilevel PLS-DA 1 PLS-DA 1 1 Frequency Frequency 1 1 3 5 number of misclassifications (NMC) 1 3 5 number of misclassifications (NMC) Copyright Biosystems Data

More information

Guideline for Bioequivalence Studies of Generic Products

Guideline for Bioequivalence Studies of Generic Products English translation of Attachment 1 of Division-tification 0229. 10 of the Pharmaceutical and Food Safety Bureau, dated February 29, 2012 Guideline for Bioequivalence Studies of Generic Products Index

More information

Bariatric surgery, such as Roux-en-Y gastric bypass

Bariatric surgery, such as Roux-en-Y gastric bypass B R I E F R E S E A R C H R E P O R T -Cell Glucagon-Like Peptide-1 Receptor Contributes to Improved Glucose Tolerance After Vertical Sleeve Gastrectomy Darline Garibay, Anne K. McGavigan, Seon A. Lee,

More information

OS3 The TearLab Ocular Surface Severity Scale Benjamin D. Sullivan, Ph.D. (760)

OS3 The TearLab Ocular Surface Severity Scale Benjamin D. Sullivan, Ph.D. (760) OS3 The TearLab Ocular Surface Severity Scale Benjamin D. Sullivan, Ph.D. bdsulliv@tearlab.com (760) 224-4595 The Ocular Surface Severity Scale (OS 3 ) was originally developed as a way to compare the

More information

G5)H/C8-)72)78)2I-,8/52& ()*+,-./,-0))12-345)6/3/782 9:-8;<;4.= J-3/ J-3/ "#&' "#% "#"% "#%$

G5)H/C8-)72)78)2I-,8/52& ()*+,-./,-0))12-345)6/3/782 9:-8;<;4.= J-3/ J-3/ #&' #% #% #%$ # G5)H/C8-)72)78)2I-,8/52& #% #$ # # &# G5)H/C8-)72)78)2I-,8/52' @5/AB/7CD J-3/ /,?8-6/2@5/AB/7CD #&' #% #$ # # '#E ()*+,-./,-0))12-345)6/3/782 9:-8;;4. @5/AB/7CD J-3/ #' /,?8-6/2@5/AB/7CD #&F #&' #% #$

More information

Ch.20 Dynamic Cue Combination in Distributional Population Code Networks. Ka Yeon Kim Biopsychology

Ch.20 Dynamic Cue Combination in Distributional Population Code Networks. Ka Yeon Kim Biopsychology Ch.20 Dynamic Cue Combination in Distributional Population Code Networks Ka Yeon Kim Biopsychology Applying the coding scheme to dynamic cue combination (Experiment, Kording&Wolpert,2004) Dynamic sensorymotor

More information

An ECG Beat Classification Using Adaptive Neuro- Fuzzy Inference System

An ECG Beat Classification Using Adaptive Neuro- Fuzzy Inference System An ECG Beat Classification Using Adaptive Neuro- Fuzzy Inference System Pramod R. Bokde Department of Electronics Engineering, Priyadarshini Bhagwati College of Engineering, Nagpur, India Abstract Electrocardiography

More information

Causal Modeling of the Glucose-Insulin System in Type-I Diabetic Patients J. Fernandez, N. Aguilar, R. Fernandez de Canete, J. C.

Causal Modeling of the Glucose-Insulin System in Type-I Diabetic Patients J. Fernandez, N. Aguilar, R. Fernandez de Canete, J. C. Causal Modeling of the Glucose-Insulin System in Type-I Diabetic Patients J. Fernandez, N. Aguilar, R. Fernandez de Canete, J. C. Ramos-Diaz Abstract In this paper, a simulation model of the glucoseinsulin

More information

Tier 3 and 4 healthy weight and obesity services in Kent

Tier 3 and 4 healthy weight and obesity services in Kent Tier 3 and 4 healthy weight and obesity services in Kent Model user guide September 2016 1 Background Tier 3 healthy weight services for Kent residents are currently commissioned by Kent County Council

More information

Contribution of Endogenous Glucagon-Like Peptide 1 to Glucose Metabolism After Roux-en-Y Gastric Bypass

Contribution of Endogenous Glucagon-Like Peptide 1 to Glucose Metabolism After Roux-en-Y Gastric Bypass Diabetes Volume 63, February 2014 483 Meera Shah, 1 Jennie H. Law, 1 Francesco Micheletto, 2 Matheni Sathananthan, 1 Chiara Dalla Man, 2 Claudio Cobelli, 2 Robert A. Rizza, 1 Michael Camilleri, 3 Alan

More information

Texas A&M University Electrical Engineering Department. ELEN 665 RF Communication Circuits Laboratory Fall 2010

Texas A&M University Electrical Engineering Department. ELEN 665 RF Communication Circuits Laboratory Fall 2010 Texas A&M University Electrical Engineering Department ELEN 665 RF Communication Circuits Laboratory Fall 2010 Laboratory #6: Analysis and Simulation of a CMOS VCO Objectives: To learn the use of periodic

More information

SmartSensor Home OGTT Kit For Detection Of Diabetes

SmartSensor Home OGTT Kit For Detection Of Diabetes SmartSensor Home OGTT Kit For Detection Of Diabetes Background to Diabetes Global diabetes epidemic 50% of type 2 undiagnosed; 183m people Prediabetes affects over 350m people 18% of pregnancies affected

More information

Exposure-response in the presence of confounding

Exposure-response in the presence of confounding Exposure-response in the presence of confounding Jonathan L. French, ScD Metrum Research Group LLC May 3, 2016 c 2016 Metrum Research Group LLC TICTS, Durham, NC, 2016 May 3, 2016 1 / 24 Outline 1 Introduction

More information

TSH ELISA Kit Medical Device Licence No.: 16419

TSH ELISA Kit Medical Device Licence No.: 16419 TSH ELISA Kit Medical Device Licence No.: 16419 Enzyme immunoassay kit for the quantitative determination of TSH concentration in serum. Catalog Number: SL100305 Catalog Number: SL100306 Catalog Number:

More information

abnormally high compared to those encountered when animals are fed by University of Iowa, Iowa City, Iowa, U.S.A.

abnormally high compared to those encountered when animals are fed by University of Iowa, Iowa City, Iowa, U.S.A. J. Phy8iol. (1965), 181, pp. 59-67 59 With 5 text-ftgure8 Printed in Great Britain THE ANALYSIS OF GLUCOSE MEASUREMENTS BY COMPUTER SIMULATION* BY R. G. JANES "D J. 0. OSBURN From the Departments of Anatomy

More information

Pathogenesis of Type 2 Diabetes

Pathogenesis of Type 2 Diabetes 9/23/215 Multiple, Complex Pathophysiological Abnmalities in T2DM incretin effect gut carbohydrate delivery & absption pancreatic insulin secretion pancreatic glucagon secretion HYPERGLYCEMIA? Pathogenesis

More information

Quality Assurance Mapping Your QC Program Equipment and Test Quality. Susan Blonshine RRT, RPFT, FAARC, AE-C

Quality Assurance Mapping Your QC Program Equipment and Test Quality. Susan Blonshine RRT, RPFT, FAARC, AE-C Quality Assurance Mapping Your QC Program Equipment and Test Quality Susan Blonshine RRT, RPFT, FAARC, AE-C How to Begin Gather resources Define PF scope of service Procedures performed Equipment Describe

More information

Interpreting the charts & graphs

Interpreting the charts & graphs Report reference guide mg/dl The diasend solution Interpreting the charts & graphs diasend is a universal cloud-based diabetes data management system, that enables you to upload data from meters, pumps

More information

THE ANTIDIURETIC RESPONSE TO AND EXCRETION OF PITUITARY (POSTERIOR LOBE) EXTRACT IN MAN, WITH REFERENCE TO THE ACTION OF NICOTINE

THE ANTIDIURETIC RESPONSE TO AND EXCRETION OF PITUITARY (POSTERIOR LOBE) EXTRACT IN MAN, WITH REFERENCE TO THE ACTION OF NICOTINE Brit. J. Pharmacol. (1951), 6, 471. THE ANTIDIURETIC RESPONSE TO AND EXCRETION OF PITUITARY (POSTERIOR LOBE) EXTRACT IN MAN, WITH REFERENCE TO THE ACTION OF NICOTINE BY GEORGE P. BURN AND R. SINGH GREWAL

More information

Dilated Recurrent Neural Network for Short-Time Prediction of Glucose Concentration

Dilated Recurrent Neural Network for Short-Time Prediction of Glucose Concentration Dilated Recurrent Neural Network for Short-Time Prediction of Glucose Concentration Jianwei Chen, Kezhi Li, Pau Herrero, Taiyu Zhu, Pantelis Georgiou Department of Electronic and Electrical Engineering,

More information

4 th March Sarah Davis School of Health and Related Research, University of Sheffield Jefferson Sheard Jefferson Sheard Consultancy, Sheffield

4 th March Sarah Davis School of Health and Related Research, University of Sheffield Jefferson Sheard Jefferson Sheard Consultancy, Sheffield REVIEW OF THE BRISTOL-MYERS SQUIBB / ASTRAZENECA RESPONSE TO THE ACD ON DAPAGLIFLOZIN FOR TYPE 2 DIABETES REPORT BY THE DECISION SUPPORT UNIT 4 th March 2013 Sarah Davis School of Health and Related Research,

More information

User Guide for Classification of Diabetes: A search tool for identifying miscoded, misclassified or misdiagnosed patients

User Guide for Classification of Diabetes: A search tool for identifying miscoded, misclassified or misdiagnosed patients User Guide for Classification of Diabetes: A search tool for identifying miscoded, misclassified or misdiagnosed patients For use with isoft Premiere Synergy Produced by André Ring 1 Table of Contents

More information

Achieving Open-loop Insulin Delivery using ITM Designed for T1DM Patients

Achieving Open-loop Insulin Delivery using ITM Designed for T1DM Patients I. J. Computer Network and Information Security, 2012, 1, 52-58 Published Online February 2012 in MECS (http://www.mecs-press.org/) DOI: 10.5815/ijcnis.2012.01.07 Achieving Open-loop Insulin Delivery using

More information

INJECTABLE THERAPIES IN DIABETES. Barbara Ann McKee Diabetes Specialist Nurse

INJECTABLE THERAPIES IN DIABETES. Barbara Ann McKee Diabetes Specialist Nurse INJECTABLE THERAPIES IN DIABETES Barbara Ann McKee Diabetes Specialist Nurse 1 Aims of the session Describe the different injectable agents for diabetes and when they would be used. Describe some common

More information

Lipid annotation with MS2Analyzer. Yan Ma 10/24/2013

Lipid annotation with MS2Analyzer. Yan Ma 10/24/2013 Lipid annotation with MS2Analyzer Yan Ma 10/24/2013 Checklist before you start You need to have: 1.A computer with Java environment and Office(2003 or higher) 2.MS/MS spectra in MGF files 3.Latest version

More information

Energy Adaptations Persist 2 Years After Sleeve Gastrectomy and Gastric Bypass

Energy Adaptations Persist 2 Years After Sleeve Gastrectomy and Gastric Bypass OBES SURG (2016) 26:459 463 DOI 10.1007/s11695-015-1972-4 BRIEF COMMUNICATION Energy Adaptations Persist 2 Years After Sleeve Gastrectomy and Gastric Bypass Charmaine S. Tam 1 & Georgia Rigas 2 & Leonie

More information

OBESITY STUDIES RESEARCH DESIGN AND METHODS

OBESITY STUDIES RESEARCH DESIGN AND METHODS 3104 Diabetes Volume 64, September 2015 Kim T. Nguyen, 1 Charles J. Billington, 2 Adrian Vella, 3 Qi Wang, 4 Leaque Ahmed, 5 John P. Bantle, 2 Marc Bessler, 5 John E. Connett, 4 William B. Inabnet, 6 Avis

More information

Benchmark Dose Modeling Cancer Models. Allen Davis, MSPH Jeff Gift, Ph.D. Jay Zhao, Ph.D. National Center for Environmental Assessment, U.S.

Benchmark Dose Modeling Cancer Models. Allen Davis, MSPH Jeff Gift, Ph.D. Jay Zhao, Ph.D. National Center for Environmental Assessment, U.S. Benchmark Dose Modeling Cancer Models Allen Davis, MSPH Jeff Gift, Ph.D. Jay Zhao, Ph.D. National Center for Environmental Assessment, U.S. EPA Disclaimer The views expressed in this presentation are those

More information

Diabetes and Obesity Sex- and Gender-differences!

Diabetes and Obesity Sex- and Gender-differences! Oskar Kokoschka 1908 Das Mädchen Li und ich Diabetes and Obesity Sex- and Gender-differences! Alexandra Kautzky Willer IGM, Berlin 2015 Global Diabetes-Epidemic Increase (%) in age-standardised diabetes

More information