SAS Clinical Programming In 18 Easy Steps

Size: px
Start display at page:

Download "SAS Clinical Programming In 18 Easy Steps"

Transcription

1 SAS Clinical Programming In 18 Easy Steps FOR M.Pharm / M.Sc (Life Sciences) /M.sc (Stats)/ M.C.A/M.Tech / B.Pharm /Bio-Tech/B.Tech.

2

3 SAS Clinical Programming In 18 Easy Steps FOR M.Pharm / M.Sc (Life Sciences) /M.sc (Stats)/ M.C.A/M.Tech / B.Pharm /Bio-Tech/B.Tech. Mr. Y. Lakshmi Prasad

4 Notion Press 5 Muthu Kalathy Street, Triplicane, Chennai First Published by Notion Press 2014 Copyright Mr. Y. Lakshmi Prasad 2014 All Rights Reserved. ISBN: This book has been published in good faith that the work of the author is original. All efforts have been taken to make the material error-free. However, the author and the publisher disclaim the responsibility. No part of this book may be used, reproduced in any manner whatsoever without written permission from the author, except in the case of brief quotations embodied in critical articles and reviews.

5 This book is dedicated to P. V. Narasimha Rao (Patriotic statesman who believed that the nation is bigger than the political system)

6 Preface Finally, An Indian author created an indispensable guide focuses on SAS Clinical Programming, in an instructive and conversational tone which helps them who want to make their career in SAS Clinical Programming and entry level programmers for their day to day tasks with practical, real world examples, detailed description, work flows, Issues, Resolutions, key techniques and many more. This book is like your personal trainer, explains the art of SAS clinical Programming in 18 easy steps which covers from basics to ADS, TLF Creation, as well as CDISC SDTM, ADaM. Many statistical Concepts are explained in an easy way so that you feel confident while using Statistical Procedures. If you are already working as a SAS Clinical Programmer, still you need this book to sharpen your skills. This book will be an asset to you and your career by making you a better SAS clinical Programmer.

7 Authors Note One interesting thing in SAS Clinical Programming, it is the career Option for people with various study backgrounds. I have seen SAS Programmers with different qualifications like Pharmacy, Statistics, M.C.A, M. Tech, M.Sc Life sciences, Bio Tech, Mathematics and many more. It is wonderful to see people with different backgrounds working on the same project, but how can we expect Clinical Research and Biostatistics knowledge from a person with technical qualification. Every person might be strong in their own subject but SAS Clinical Programmer needs to know more than one subject (Programming (Tech), Clinical Research (Pharma) and Biostatistics (Stats)). This might be the reason I thought it would be beneficial to have a resource that brings together all these aspects in one volume so that it would help everybody who wants to make SAS Programming as their career Option. This book was written to assist learners in getting started, while at the same time providing techniques that I have found to be useful to Entry level SAS Clinical programmers. This book is aimed more at the SAS Clinical programmer who is responsible for producing submission ready Reports. This book assumes that the reader has no prior knowledge of clinical research and SAS programming. Each one of us has our own style of approach to an issue; it is likely that others will find alternate solutions for many of the issues discussed in this book. The clinical trial data that appears in a number of examples throughout this book was just an imaginary phase 2 Diabetic study, any resemblance was simply accidental. This book was organized in 18 easy steps from introduction to creating final reports, which resembles the SAS Clinical programmer s work environment.

8 viii Author s Note The solutions to some of the questions are not written fully but only some steps of hints are mentioned. It is just for the sake of recalling the memory involving important facts in common practice. I shall ever be thankful, grateful and eager to accept the insightful suggestions from my colleagues make this work more worthy. Y L Prasad

9 Acknoweldgements A great deal of information was received from the numerous people who offered their time. I would like to thank each and every person who helped me in creating this book. I heartily express my gratitude to all of my peers, colleagues, friends and students whose sincere response geared up to meet the exigent way of expressing the contents. I am very much grateful to our Press, editors and designers whose scrupulous assistance completed this work to reach your hands. Finally, I am personally indebted to my wonderful partner Prajwala, and my kid Prakhyath, for their support, enthusiasm, and tolerance, without which this book would have never been completed. Y.L.Prasad

10 Contents Preface Authors Note Acknoweldgements vi vii ix Step 1: INTRODUCTION TO CLINCAL RESEARCH 1 Drug Development Process 1 Clinical Research 2 Clinical Trials 3 Clinical Research Process 3 Industry Regulations and Standards for Clinical Trials 6 Departments and Roles in a CRO 8 Process Flow in a Typical Clinical Trial 12 Step 2: INTRODUCTION TO SAS 15 Basic SAS Program Requirements 16 Rules for User-Supplied SAS Names 17 SAS WINDOWS 18 Reading Data into a SAS Data Set 19 Introduction to SAS/Library 20 Step 3: INTRODUCTION TO OUR STUDY 23 Diabetes Mellitus 23 Types of Diabetes Mellitus 23 Pathophysiology 24 Diagnosis 24 WHO Diabetes Diagnostic Criteria 25 Study Details 25 Study Design 26 Efficacy Measures 27 Analysis Populations 28 Treatment Compliance 29

11 Contents xi Baseline Definition 29 Efficacy Evaluation 30 Safety Evaluation 30 Step 4: STUDY DATASETS 32 List Input Method 33 Double Trailing AT Method 34 Reading Non Standard Data (Format Input Method) 36 Column Input, Column Pointer Method 40 Column Pointer At Method 45 Step 5: INTRODUCTION TO PROC STEP 56 Proc Print (PRINT Procedure) 57 Proc Contents (CONTENTS Procedure) 65 Proc Sort (SORT Procedure) 67 Proc Format (FORMAT Procedure) 72 Step 6: COMBINING DATASETS 81 Concatenating Datasets 82 Appending Datasets 83 Interleaving Datasets 87 Merging Datasets 88 Step 7: SAS FUNCTIONS 98 Arithmetic Functions 99 Character Functions 101 DATE/TIME Functions 122 Step 8: UNDERSTANDING DATA STEP PROCESS AND PDV 128 Flow of Action in a Datastep 128 Processing a DATA Step, a Walkthrough 130 Types of Errors in SAS 131 Common Automatic Variables 132 Step 9: MODIFYING SAS DATASETS 133 Conditional Processing 133 Using UNTIL and WHILE Clauses 149

12 xii Contents Debugging 154 Creating User Generated Log Messages 154 RETAIN Statement 155 Array 158 Step 10: STATISTICAL CONCEPTS 165 Common Statistical Terms 165 Types of Variables 166 Types of Data 167 Types of Clinical Studies 172 Selection of an Appropriate Statistical Test 174 Proc Freq (FREQ Procedure) 175 CHI-Square Test 179 Fisher s Exact Test 182 Mantel-Heanszel Chi-Square Test 183 Cochran-Mantel-Heanszel Chi-Square Test (CMH Test) 184 Proc Means (MEANS Procedure) 184 Proc Univariate (UNIVARIATE Procedure) 188 Proc Univariate in Data Cleaning 191 ODS (Output Delivery System) 192 Proc Ttest (TTEST Procedure) 199 Two Sample Ttest 201 Proc Npar1way (NPAR1WAY Procedure) 203 Wilcoxon Signed-rank Test 204 Wilcoxon Rank Sum Test 205 Proc ANOVA 206 Kruskal-Wallis Test 208 CORR Procedure 209 Regression Analysis 213 Multiple Linear Regressions 218 LOGISTIC Regression 219 Step 11: SAS MACROS 222 Macro Terminology 222 Macro Variables 223 %LET Statement 225 Creating Macro Variables from Data Step 228

13 Contents xiii Symget and Symgetn Functions 230 Building a Better Macro 233 Macro Parameters 235 Steps in Creating Macro 236 Macro Functions 237 Macro Debugging 242 Storing Macros 244 Step 12: PROC SQL 248 SQL Terminology 248 SELECT Clause 249 INTO Clause 256 Joining Tables 257 Performing Inner Join 259 Step 13: CDISC SDTM 264 CDISC Standards 264 SDTM Domains 266 DM Domain 274 CM Domain 281 AE Domain 287 LB Domain 294 Step 14: CDISC ADaM 301 Structure of Analysis Dataset Specifications 301 ADSL Specification 303 ADAE Specifications 315 ADCM Specifications 320 ADLB Specifications 326 Data Definition Tables (Define.pdf) 332 Step 15: CREATING ANALYSIS DATASETS 337 Study Populations / Analysis Populations 339 Study Day Variable 339 Change from Baseline 343 Visit Windowing 344 Basic Lab Pre-Processing 346

14 xiv Contents Dealing with Partial Dates 348 Time to Event Analysis 349 Duration of Response 350 Determining Value for VISFWDID in Adverse Events 351 Proc Transpose (Transposing Datasets) 351 Flagging Concomitant Medications 354 TEAE Flag 356 LOCF 358 Duration Calculation 362 TABLE Shells 365 Step 16: CREATING REPORTS 376 TABULATE Procedure 376 Proc Report (REPORT Procedure) 384 Using the Column Statement 386 Using the Define Statement 388 Using the Break /Rbreak Statements 392 Using Compute Block 392 Step 17: SAS/GRAPH 397 Proc Gchart (GCHART Procedure) 397 GPLOT Procedure 400 Step 18: DOCUMENTATION & STANDARD OPERATING PROCEDURES 405 Different Documents we use while Performing SAS Clinical Programming 405 Standard Operating Procedures 412 Validation and QC Guidelines 420 Messages to be Checked in the Log Window 421 Proc Compare 422 Check Your Understanding 426 Index 432

15 We all have dreams. But in order to make dreams come into reality, it takes an awful lot of determination, dedication, self-discipline, and effort. ---Jesse Owens

16

17 Step 1 INTRODUCTION TO CLINCAL RESEARCH The Process from discovering a new drug to registering it for marketing is very complex and lengthy. There are several people involved in the Process of drug discovery and development includes Scientists, Clinicians, Statisticians as well as Data managers and SAS Programmers. It is estimated that, on average, a drug takes years from initial research to reach the market. Drug discovery and development are mainly carried out by pharmaceutical companies and research agencies. The pharmaceutical market is very competitive. It is imperative that pharmaceutical companies discover and develop drugs efficiently and within the shortest time span to remain competitive. Drug Development Process The Drug development Process has different stages: Drug Discovery Drug Development Clinical Trials Manufacturing Marketing Approval The Drug Discovery Process involves in finding out the target that causes the disease, chemical or biological compounds are screened and tested against these targets to find leading drug candidates for further development. The Drug Development Process involves Tests performed on the lead compounds in test tubes (laboratory, in vitro) and on animals (in vivo) to check how they affect the biological systems.

18 2 SAS Clinical Programming The development Process includes pharmacological studies of the lead compound and its effects on toxicity, carcinogenicity, mutagenicity and reproductive development. These data are important for determining the safety and effectiveness of the lead compound as a potential drug. Typically, tens of thousands of compounds are screened and tested, and only a handful makes it into the market as drug products. The statistics are such that, of 5000 compounds that show initial promise, five will go into human clinical trials, and only one will become an approved drug. Clinical Research Clinical research is a branch of healthcare science that determines the safety and effectiveness of medications, devices, diagnostic products and treatment regimens intended for human use. Clinical research includes: Medical and behavioral research involving volunteer participants Investigations that are carefully developed and conducted with clinical outcomes recorded Identification of better ways to prevent, diagnoses, treats, and understands human disease Trials that test new treatments, clinical management and clinical outcomes, and long term studies Strict scientific guidelines There are ethical and regulatory constraints for the design and conduct of a clinical trial that have to be considered. Ethical principles are to protect participants before a drug is put forward for a clinical trial. The United States National Institutes of Health (NIH) has stipulated seven ethical requirements: 1. Social value 2. Scientific validity 3. Fair subject selection 4. Informed consent 5. Favorable risk-benefit ratio

19 Y Lakshmi Prasad 3 6. Independent review 7. Respect for human subjects Clinical Trials: Clinical trials are prospective studies on human subjects that are designed to answer specific questions about drugs, treatments, devices or new ways of using known interventions, generating safety and efficacy data. Clinical Research is a study that tests how well an intervention works in a group of people, Tests for new methods of screening, prevention, diagnosis, or therapy. During a trial, additional information is learned about an intervention, its Risks, and its effectiveness. Clinical Research Process Pre-clinical testing Investigational New Drug Application (IND) Phase I (assess safety) Phase II (test for effectiveness) Phase III (large-scale testing) Licensing (approval to use) Approval (available for prescription) Post-marketing studies (special studies and long-term effectiveness/ use) Pre-Clinical Testing Pre-clinical testing is required before testing humans. Pre-clinical testing is often conducted on animals many pre-clinical studies use a review Committee to determine if the use of animals is warranted. The review Committee also checks to see if the research can be improved by reducing or replacing animals. Laboratory and animal studies are conducted to find out if there is a potential benefit of the drug, vaccine, or other product and to explore general safety concerns. If a vaccine, Drug has a potential benefit, it is prepared for human testing. Pre-clinical testing takes approximately three to four years.

20 4 SAS Clinical Programming Investigational New Drug Application (IND): For studies that involve a new vaccine, drug, after completing Preclinical testing, an investigational new drug application (IND) must be filed describing the results of pre-clinical testing and how future studies will be conducted. The U.S. Food and Drug Administration (FDA) have 30 days to review the IND. If the FDA approves the IND within 30 days, the test drug can precede to a phase I trial. Phase I (Assess Drug Safety): The Phase I clinical trial is the first experiment in which a drug is tested on the human body. The primary aim of the trial is to assess the safety of the new drug. Phase I trials are usually conducted with open label, i.e. the subjects are aware of the drugs that they are being given. For the first time, the Test drug is introduced to humans. Testing occurs in a small number of healthy volunteers (20 to 100). This initial phase of testing usually lasts several months to 1 year. The goals of phase I clinical trials are Assess safety for humans as well as select the dose to be used in future studies. During phase I, the study is designed to determine how the human body reacts and what side effects occur as dosage levels is increased. Open-label Study: A trial in which subjects and investigators know which product each subject is receiving. Phase II (Test for Safety and Effectiveness):- A phase II study provides comparative information about relative safety and effectiveness and efficacy. Most phase II studies are randomized trials. This means One group receives the experimental Test Drug other Control group receives the current standard treatment or Placebo. Some phase II studies are blinded, This means participants and researchers do not know who receives the experimental test drug, this testing may last from several months to 2 years it may involve from participants. Phase III (Large-Scale Testing):- The objective of Phase III is to confirm the efficacy of the drug in a large patient group. This trial is normally conducted in several hospitals

21 Y Lakshmi Prasad 5 in different demographic locations, to determine the influence of ethnic responses, so this trial is also known as a multicentre trial. This largescale testing (1,000-3,000 participants/volunteers) provides a better understanding of efficacy. Most phase III studies are randomized and blinded trials with specific entry criteria. Phase III studies typically last several years. After a phase III study is successfully completed, a company can request NDA from the FDA. Randomization: The Process of assigning trial subjects to treatment or control groups using an element of chance to determine the assignments in order to reduce bias. Blinded study: A study in which the subject, the investigator, or anyone assessing the outcome is unaware of the treatment assignment(s). Control group: The group of subjects in a controlled study that receives no treatment, a standard treatment or a placebo. Placebo: A pharmaceutical preparation that does not contain the investigational agent. Multicenter trial: Clinical trial conducted according to a single protocol but at more than one site and therefore, carried out by more than one investigator. Food and Drug Administration (FDA): The United States regulatory authority charged with, among other responsibilities, granting IND and NDA approvals. New Drug Application (NDA): An application to FDA for a license to market a new drug in the United States. Licensing (Approval to Use): After all three clinical trial phases are complete and, if the research demonstrates that the test drug is safe and effective, a New Drug Application (NDA)/ Biologics License Application (BLA) is filed with the FDA. This NDA/BLA must contain all scientific information compiled over the course of the trials. The FDA is allowed at least 6 months to review the NDA/BLA. However, this review Process can sometimes take up to 2 years, depending on specific country requirements.

22 6 SAS Clinical Programming Approval (Available for Prescription): Health care providers are able to prescribe. Even after approval, reviews continue to ensure safety over time. For example, all cases of adverse events must be reported, and quality control standards must be met (Sometimes studies to evaluate long-term effects are also required). The accelerated approval Process for serious diseases is designed to help development of treatments and to fill an unmet medical need to get important new treatments to patients faster. Post-Marketing Studies: Post-marketing studies (special studies and long-term effectiveness/ use) are also called Phase IV studies. These studies are often performed in special populations not previously studied (for example, children or the elderly) the studies are designed to monitor Long-term effectiveness and/or efficacy and the impact on a person s quality of life. Some studies help determine the cost -effectiveness of a therapy compared to other traditional and new therapies. Industry Regulations and Standards for Clinical Trials Every trial has to be approved and carried out under regulatory compliance to comply with GCP requirements. Different countries have different requirements for clinical trials. Two organizations that carry significant regulatory weight are the combined forces of the US Food and Drug Administration (FDA) and International Conference on Harmonization of Technical Requirements for Registration of Pharmaceuticals for Human Use (ICH). It is the role of public regulatory authorities to ensure that pharmaceutical companies comply with regulations. There is legislation that requires drugs to be developed, tested, trialed and manufactured in accordance to guidelines so that they are safe and patient s well being is protected. Regulatory authorities perform the watchdog role to ensure that animal studies comply with Good Laboratory Practice (GLP), clinical trials are performed in accordance with Good Clinical Practice (GCP) and drugs are manufactured under current Good Manufacturing Practice (cgmp) conditions. ICH stands for International Conference on Harmonization of Technical Requirements for Registration of Pharmaceuticals for

23 Y Lakshmi Prasad 7 Human Use. ICH is a joint initiative involving both regulators and research-based industry representatives of the EU, Japan and the US in scientific and technical discussions of the testing Procedures required to assess and ensure the safety, quality and efficacy of medicines. The objective of ICH is to increase international harmonization of technical requirements to ensure that safe, effective and high quality medicines are developed and registered in the most efficient and cost effective manner. The ICH Topics are divided into four major categories: Quality (Q): Those relating to chemical and pharmaceutical Quality Assurance. Safety (S): Those relating to in vitro and in vivo pre clinical studies. Efficacy (E): Those relating to clinical studies in human subject. Multidisciplinary topics (M): Topics which do not fit uniquely into one of the above categories. Efficacy Topics: E3: Structure and Content of Clinical Study Reports E4: Dose-Response Information to Support Drug Registration E6: Good Clinical Practice: Consolidated Guideline E8: General Considerations for Clinical Trials E9: Statistical Principles for Clinical Trials E10: Choice of Control Group and Related Issues in Clinical Trials ICH s mission is to make recommendations towards achieving greater harmonization in the interpretation and application of technical Guidelines and requirements for pharmaceutical product registration. The ICH Steering Committee and its sub-committee are comprised of representatives from six parties that represent the regulatory bodies and research-based industry in the European Union, Japan and the USA.

24 8 SAS Clinical Programming Region Regulatory Body Research Based Industry Japan Europe USA MHLW - Ministry of Health, Labour and Welfare EU - European Union FDA - Food and Drug Administration JPMA-Japan Pharmaceutical Manufacturers Association EFPIA - European Federation of Pharmaceutical Industries and Associations PhRMA - Pharmaceutical Research and Manufacturers of America U.S.FDA: Branch of the United States Department of Health and Human Services and regulates all aspects of pharmaceutical industry. 21 CFR Part 11 Compliance: In your research the computer systems used to collect and analyze data must be validated to meet the FDA requirements for electronic records and signatures. Title 21 of the Code of Federal Regulations (CFR): Parts applicable to clinical research: Part 11 - Electronic Records and Signatures Part 50 - Protection of Human Subjects Part 54 - Financial Disclosure by Clinical Investigators Part 56 - Institutional Review Boards Part Investigational New Drug Application Part Applications for FDA Approval to Market a New Drug or an Antibiotic Drug Part Biological Products Part Medical Devices Departments and Roles in a CRO Contract Research Organization: CRO is an organization that provides support to the Pharmaceutical, biotechnology, and medical device industries in the form of research services outsourced on a contract basis. A CRO may provide such services as Pre Clinical Research, Clinical Research, Clinical Trials Management, Clinical Data Management, Bio statistics and SAS Programming.

25 Y Lakshmi Prasad 9 A Typical Clinical Research Organization may contain the following departments: Clinical Operations Data Management Medical writing Pharmacovigilance Biostatistics/ SAS Programming Regulatory affairs Key Functions in Clinical Operations: Managing and coordination of study conduct Monitoring and tracking of project milestones to ensure that the project runs within timelines. Participation as appropriate to expedite the feasibility and conduct of global trials Ensuring that the regulatory submission are of acceptable quality Support Investigator as and when required (e.g. Finalization of Investigator agreements and contracts, Finalization of Protocol and CRF) Key Functions in Data Management: Data Entry Database creation, Updating, Validation and Database lock Data Quality Check Data Clarification Form generation Coordination with Operations team to resolve queries

26 10 SAS Clinical Programming Protocol: Clinical research is conducted according to a plan (a protocol) or action plan. The plan describes what will be done in the study, how it will be conducted, and why each part of the study is necessary. The protocol or plan is carefully designed to safeguard the participant s health and answer specific research questions. Case Report Form (CRF). A printed, optical, or electronic document designed to record all of the protocol-required information to be reported to the sponsor for each trial subject. Key Functions in Quality Assurance: Facilitate audits which are conducted by clients locally within the country Ensure that all staff within the country has a complete and current training record Facilitate the auditing of suppliers and vendors used by company within the country Ensure that all GCP compliance issues with sites or elsewhere are raised to the Director of Quality Assurance and the Director of Medical Affairs Maintaining version control of SOPs to ensure that all staff are following the correct and up to date SOPs Key Functions in Pharmacovigilance: Collect, follow-up, transmit all local adverse events, and pregnancy cases, to Global Pharmacovigilance. Process cases in accordance with Global and Local Pharmacovigilance Procedures. Answer ADR and ADR case processing questions from local Regulatory Authorities and Health Care Professionals. Submit the report able ADRs, to the local Regulatory Authorities according to the national regulations and answer any subsequent questions in collaboration with the Global Pharmacovigilance.

27 Y Lakshmi Prasad 11 Key Functions in Medical Writing: Clinical Study Protocol Writing Documentation for Regulatory Submission Technical Documentation for Clinical Trials Writing Medical Cases Managing SAEs during clinical trials Closely associated with regulatory department in preparing narratives for submission Standard Operating Procedure (SOP): Detailed, written instructions to achieve uniformity of the performance of a specific function. Adverse Drug Reaction (ADR): Any noxious and unintended response associated with the use of a drug in humans. Serious Adverse Event (SAE ): Any untoward medical occurrence that at any dose: results in death, is life threatening, requires inpatient hospitalization or prolongation of existing hospitalization, results in persistent or significant disability/incapacity, or is a congenital anomaly / birth defect.

28 12 SAS Clinical Programming Process Flow in a Typical Clinical Trial Protocol Development CRF designing BlankCRF SITE CLINICAL OPERATIONS Database Designing FilledCRF Edit checkprogramming DCF Data Entry Discrepancy DATA MANAGEMENT Data Validation Database Lock Data Extract CDISC Conversion ADS Creation BIO STATISTICS TLF Creation Study Submission Process Flow in a Typical Clinical Trial: Every clinical investigation begins with the development of a clinical protocol. The protocol is a document that describes how a clinical trial will be conducted and ensures the safety of the trial subjects and integrity of the data collected. After preparing the protocol we go with CRF designing, The Case Report Form is a data-reporting document used in a clinical study. CRF Collects relevant data in a specific format in accordance with the protocol and compliance with regulatory requirements which

29 SAS Clinical Programming In 18 Easy Steps FOR M.Pharm / M.Sc (Life Sciences) /M.sc (Stats)/ M.C.A/M.Tech / B.Pharm /Bio-Tech/B.Tech.

Training/Internship Brochure Advanced Clinical SAS Programming Full Time 6 months Program

Training/Internship Brochure Advanced Clinical SAS Programming Full Time 6 months Program Training/Internship Brochure Advanced Clinical SAS Programming Full Time 6 months Program Domain Clinical Data Sciences Private Limited 8-2-611/1/2, Road No 11, Banjara Hills, Hyderabad Andhra Pradesh

More information

SAS CLINICAL TRAINING

SAS CLINICAL TRAINING SAS CLINICAL TRAINING Presented By 3S Business Corporation Inc www.3sbc.com Call us at : 281-823-9222 Mail us at : info@3sbc.com Table of Contents S.No TOPICS 1 Introduction to Clinical Trials 2 Introduction

More information

Clinical Data Management Overview

Clinical Data Management Overview The 2 nd Clinical Data Management Training Clinical Data Management Overview Andrew Taylor ( 安 泰 乐 ), M.S. Head of Clinical Data Management August 30, 2010 Learning Objectives Overview of Process Related

More information

Programme Guide PGDCDM

Programme Guide PGDCDM Post Graduate Diploma in Clinical Data Management and Biostatistics with SAS Programme Guide PGDCDM School of Health Sciences Indira Gandhi National Open University WHY THIS PROGRAMME? The Post Graduate

More information

Needs, Providing Solutions

Needs, Providing Solutions Identifying Needs, Providing Solutions 1 I n d u s t r y The growth of medical research and the countless innovations coming from the pharmaceutical, biotechnology and medical device industry, has improved

More information

Glossary of Clinical Trial Terms

Glossary of Clinical Trial Terms Glossary of Clinical Trial Terms ADVERSE REACTION: (Adverse Event): Also known as side effects, adverse reactions include any undesired actions or effects of the experimental drug or treatment. Experimental

More information

Overview of Drug Development: the Regulatory Process

Overview of Drug Development: the Regulatory Process Overview of Drug Development: the Regulatory Process Roger D. Nolan, PhD Director, Project Operations Calvert Research Institute November, 2006 Adapted from course taught by Cato Research Background: Roger

More information

What is Clinical Data Management

What is Clinical Data Management What is Clinical Data Management Clinical Data Management is involved in all aspects of processing the clinical data, working with a range of computer applications, database systems to support collection,

More information

Clinical Data Management is involved in all aspects of processing the clinical data, working with a range of computer applications / database systems

Clinical Data Management is involved in all aspects of processing the clinical data, working with a range of computer applications / database systems Clinical Data Management is involved in all aspects of processing the clinical data, working with a range of computer applications / database systems to support collection, cleaning and management of subject

More information

PHARMACY AND POISONS ORDINANCE (Cap. 138) APPLICATION FOR A CLINICAL TRIAL/MEDICINAL TEST CERTIFICATE

PHARMACY AND POISONS ORDINANCE (Cap. 138) APPLICATION FOR A CLINICAL TRIAL/MEDICINAL TEST CERTIFICATE PHARMACY AND POISONS ORDINANCE (Cap. 138) APPLICATION FOR A CLINICAL TRIAL/MEDICINAL TEST CERTIFICATE PART A: TRIAL INFORMATION A1. Title of Clinical Trial (as stated in proposed Protocol) Protocol No.

More information

Subject: No. Page PROTOCOL AND CASE REPORT FORM DEVELOPMENT AND REVIEW Standard Operating Procedure

Subject: No. Page PROTOCOL AND CASE REPORT FORM DEVELOPMENT AND REVIEW Standard Operating Procedure 703 1 of 11 POLICY The Beaumont Research Coordinating Center (BRCC) will provide advice to clinical trial investigators on protocol development, content and format. Upon request, the BRCC will review a

More information

ST. MICHAEL S HOSPITAL Guidelines for Reporting Serious Adverse Events / Unanticipated Problems to the SMH Research Ethics Board (REB) July 09, 2014

ST. MICHAEL S HOSPITAL Guidelines for Reporting Serious Adverse Events / Unanticipated Problems to the SMH Research Ethics Board (REB) July 09, 2014 ST. MICHAEL S HOSPITAL Guidelines for Reporting Serious Adverse Events / Unanticipated Problems to the SMH Research Ethics Board (REB) July 09, 2014 1. Introduction The St. Michael s Hospital (SMH) REB

More information

ABSTRACT INTRODUCTION PATIENT PROFILES SESUG 2012. Paper PH-07

ABSTRACT INTRODUCTION PATIENT PROFILES SESUG 2012. Paper PH-07 Paper PH-07 Developing a Complete Picture of Patient Safety in Clinical Trials Richard C. Zink, JMP Life Sciences, SAS Institute, Cary, NC, United States Russell D. Wolfinger, JMP Life Sciences, SAS Institute,

More information

A clinical research organization

A clinical research organization A clinical research organization About Us State of art facility. All clinical trials carried out in accordance with ICH GCP guidelines. Quality services within stipulated time period. Team of experienced

More information

Implementation of SDTM in a pharma company with complete outsourcing strategy. Annamaria Muraro Helsinn Healthcare Lugano, Switzerland

Implementation of SDTM in a pharma company with complete outsourcing strategy. Annamaria Muraro Helsinn Healthcare Lugano, Switzerland Italian-Speaking CDISC User Group 2008 Implementation of SDTM in a pharma company with complete outsourcing strategy Annamaria Muraro Helsinn Healthcare Lugano, Switzerland Background Full outsourcing

More information

TEMPLATE DATA MANAGEMENT PLAN

TEMPLATE DATA MANAGEMENT PLAN TEMPLATE DATA MANAGEMENT PLAN ICRIN (QM sub group) Version: XX Date: XXXXXXX Page 1 of 6 1.0 Document Ownership The Data Management Plan (DMP) will be initiated and subsequently owned by the Data Manager

More information

Careers in Biostatistics and Clinical SAS Programming An Overview for the Uninitiated Justina M. Flavin, Independent Consultant, San Diego, CA

Careers in Biostatistics and Clinical SAS Programming An Overview for the Uninitiated Justina M. Flavin, Independent Consultant, San Diego, CA PharmaSUG 2014 Paper CP07 Careers in Biostatistics and Clinical SAS Programming An Overview for the Uninitiated Justina M. Flavin, Independent Consultant, San Diego, CA ABSTRACT In the biopharmaceutical

More information

GENERAL INFORMATION. Adverse Event (AE) Definition (ICH GUIDELINES E6 FOR GCP 1.2):

GENERAL INFORMATION. Adverse Event (AE) Definition (ICH GUIDELINES E6 FOR GCP 1.2): Make copies of the blank SAE report form as needed. Retain originals with confirmation of all information faxed to DMID Pharmacovigilance Group Clinical Research Operations and Management Support (CROMS

More information

Masters Learning mode (Форма обучения)

Masters Learning mode (Форма обучения) Program Title (Название программы): Pharmacology Degree (Степень) Masters Learning mode (Форма обучения) Full-time and part-time Duration of study (Продолжительность программы) 2 years (4 years part time)

More information

Data Management in Clinical Trials

Data Management in Clinical Trials Data Management in Clinical Trials Introduction to the Principles and Practice of Clinical Research February 19, 2013 Diane St. Germain, RN, MS Nurse Consultant Division of Cancer Prevention National Cancer

More information

Medicine Safety Glossary

Medicine Safety Glossary The following definitions are provided as a resource to supplement the information provided in the Medicine Safety Education section of the Pfizer.com Web site; they are not intended as a comprehensive

More information

CDISC Data Standards Can Facilitate Composition of Adverse Event Narratives

CDISC Data Standards Can Facilitate Composition of Adverse Event Narratives CDISC Data Standards Can Facilitate Composition of Adverse Event Narratives Anisa Scott, Ph.D. and Richard C. Zink, Ph.D. JMP Life Sciences SAS Institute, Inc. anisa.scott@jmp.com Copyright 2010 SAS Institute

More information

Health Care Job Information Sheet #20. Clinical Research

Health Care Job Information Sheet #20. Clinical Research Health Care Job Information Sheet #20 Clinical Research A. Background B. Occupations 1) Clinical Research Associate (Study Monitor) 2) Clinical Research Coordinator 3) Other positions in the field C. Labour

More information

Overview of CDISC Implementation at PMDA. Yuki Ando Senior Scientist for Biostatistics Pharmaceuticals and Medical Devices Agency (PMDA)

Overview of CDISC Implementation at PMDA. Yuki Ando Senior Scientist for Biostatistics Pharmaceuticals and Medical Devices Agency (PMDA) Overview of CDISC Implementation at PMDA Yuki Ando Senior Scientist for Biostatistics Pharmaceuticals and Medical Devices Agency (PMDA) CDISC 2012 Outline Introduction Update of PMDA activity CDISC implementation

More information

Roles & Responsibilities of the Sponsor

Roles & Responsibilities of the Sponsor Roles & Responsibilities of the Sponsor Developed by Center for Cancer Research, National Cancer Institute, NIH Endorsed by the CTN SIG Leadership Group Objectives Funding for clinical research comes from

More information

Data Management and Good Clinical Practice Patrick Murphy, Research Informatics, Family Health International

Data Management and Good Clinical Practice Patrick Murphy, Research Informatics, Family Health International Data Management and Good Clinical Practice Patrick Murphy,, Family Health International 1 What is GCP? Good Clinical Practice is an international ethical and scientific quality standard for designing,

More information

NRA FUNCTION IN CONTROLLING VACCINES IN CLINICAL TRIAL AND MARKETING AUTHORIZATION INDONESIA 2013 DVI MEETING 9 11 APRIL 2013 1

NRA FUNCTION IN CONTROLLING VACCINES IN CLINICAL TRIAL AND MARKETING AUTHORIZATION INDONESIA 2013 DVI MEETING 9 11 APRIL 2013 1 NRA FUNCTION IN CONTROLLING VACCINES IN CLINICAL TRIAL AND MARKETING AUTHORIZATION INDONESIA 2013 DVI MEETING 9 11 APRIL 2013 1 2 The National Agency of Drug and Food Control (NA-DFC) is a non departmental

More information

What is necessary to provide good clinical data for a clinical trial?

What is necessary to provide good clinical data for a clinical trial? What is necessary to provide good clinical data for a clinical trial? Alain Barrois, Assistant Clinical Trials Operations Manager #EBMT2015 www.ebmt.org Is this a (typical) clinical trial? 2 Agenda Introduction

More information

CLINICAL TRIALS SHOULD YOU PARTICIPATE? by Gwen L. Nichols, MD

CLINICAL TRIALS SHOULD YOU PARTICIPATE? by Gwen L. Nichols, MD CLINICAL TRIALS SHOULD YOU PARTICIPATE? by Gwen L. Nichols, MD Gwen L. Nichols, M.D., is currently the Oncology Site Head of the Roche Translational Clinical Research Center at Hoffman- LaRoche. In this

More information

Data Management & Case Report Form Development in Clinical Trials. Introduction to the Principles and Practice of Clinical Research.

Data Management & Case Report Form Development in Clinical Trials. Introduction to the Principles and Practice of Clinical Research. Data Management & Case Report Form Development in Clinical Trials Introduction to the Principles and Practice of Clinical Research February 3, 2015 Marge Good, RN, MPH, OCN Nurse Consultant Division of

More information

Drug Development Process

Drug Development Process Drug Development Process Original Arthur: Addie D. Anderson CRB Consulting Engineers, Inc. Overview Important milestones establishing our current system of regulations Step-by-step overview of the drug

More information

Gregory S. Nelson ThotWave Technologies, Cary, North Carolina

Gregory S. Nelson ThotWave Technologies, Cary, North Carolina Using SAS 9 in Clinical Research Gregory S. Nelson ThotWave Technologies, Cary, North Carolina Abstract For 30 years SAS has been used in pharmaceutical research settings for data management, analytics

More information

Clinical Trials and Safety Surveillance of Drugs in Development

Clinical Trials and Safety Surveillance of Drugs in Development Clinical Trials and Safety Surveillance of Drugs in Development Hoda Eid, M.Sc., Ph.D. Manager, ADR Unit Office of Clinical Trials Therapeutic Products Directorate hoda_eid@hc-sc.gc.ca Overview Clinical

More information

CLINICAL TRIALS WITH MEDICINES IN EUROPE

CLINICAL TRIALS WITH MEDICINES IN EUROPE CLINICAL TRIALS WITH MEDICINES IN EUROPE REGULATORY FRAMEWORK FOR CLINICAL TRIALS WITH MEDICINES IN EUROPE The pharmaceutical industry is the most highly regulated sector in Europe. The Commission has

More information

Hollie Goddard Sr. IRB Coordinator McKesson Specialty Health

Hollie Goddard Sr. IRB Coordinator McKesson Specialty Health Hollie Goddard Sr. IRB Coordinator McKesson Specialty Health We are responsible for acquiring, analyzing, and protecting medical information vital to providing quality patient care HIM professionals ensure

More information

Vertex Investigator-Initiated Studies Program Overview

Vertex Investigator-Initiated Studies Program Overview Vertex Investigator-Initiated Studies Program Overview Our Goal To support independent, investigator-initiated research designed to advance scientific knowledge of disease states, patient populations,

More information

STANDARD OPERATING PROCEDURES FOR GOOD CLINICAL PRACTICE

STANDARD OPERATING PROCEDURES FOR GOOD CLINICAL PRACTICE STANDARD OPERATING PROCEDURES FOR GOOD CLINICAL PRACTICE UNC OB/GYN (V.1) 9.1.2014 Page i TABLE OF CONTENTS INTRODUCTION. iii ABBREVIATIONS iv GLOSSARY v LISTING OF ATTACHMENTS.... xi I. 1.0 GENERAL ADMINISTRATION

More information

Achieving Regulatory Success: Areas of focus for biotechnology companies. Michael J. Schlosser, PhD, DABT April 21, 2013

Achieving Regulatory Success: Areas of focus for biotechnology companies. Michael J. Schlosser, PhD, DABT April 21, 2013 Achieving Regulatory Success: Areas of focus for biotechnology companies Michael J. Schlosser, PhD, DABT April 21, 2013 Regulatory Success Outline Regulatory Initiatives Regulatory Science Pre-Regulatory

More information

Managing Risk in Clinical Research. Dr Martha J Wrigley R&D Manager Senior Visiting Fellow University of Surrey

Managing Risk in Clinical Research. Dr Martha J Wrigley R&D Manager Senior Visiting Fellow University of Surrey Managing Risk in Clinical Research Dr Martha J Wrigley R&D Manager Senior Visiting Fellow University of Surrey Aim of the session To explore the risks associated with clinical research and understand how

More information

Operational aspects of a clinical trial

Operational aspects of a clinical trial Operational aspects of a clinical trial Carlo Tomino Pharm.D. Coordinator Pre-authorization Department Head of Research and Clinical Trial Italian Medicines Agency Mwanza (Tanzania), June 11, 2012 1 Declaration

More information

Risk Management Plan (RMP) Guidance (Draft)

Risk Management Plan (RMP) Guidance (Draft) Pharmaceutical and Food Safety Bureau, Ministry of Health, Labour and Welfare Translated by Pharmaceuticals and Medical Devices Agency Pharmaceutical and Food Safety Bureau, Ministry of Health, Labour

More information

Investigational Drugs: Investigational Drugs and Biologics

Investigational Drugs: Investigational Drugs and Biologics : I. PURPOSE The purpose of this policy is to establish procedures for the proper control, storage, use and handling of investigational drugs and biologics to ensure that adequate safeguards are in place

More information

LIBRARY GUIDE: Clinical Pharmaceutical

LIBRARY GUIDE: Clinical Pharmaceutical LIBRARY GUIDE: Clinical Pharmaceutical Table of Contents Overview...2 Course Descriptions Core Knowledge: A Tour of the FDA (PHDV60)...4 A Tour of Health Canada (PHDV89)...4 A Tour of Health Europe (PHDV90)...4

More information

QUALITY CONTROL AND QUALITY ASSURANCE IN CLINICAL RESEARCH

QUALITY CONTROL AND QUALITY ASSURANCE IN CLINICAL RESEARCH QUALITY CONTROL AND QUALITY ASSURANCE IN CLINICAL RESEARCH Martin Valania, Executive Director, Corporate QA and Compliance Introduction Pharmaceutical companies recognize the benefits of carefully managing

More information

Quality by Design Concept

Quality by Design Concept 3rd Jerusalem Conference on Quality and Pharma Sciences 6-7 June, 2012 QbD in Clinical Research - Where Can QbD Impact Clinical Research Practices? Dr. Yafit Stark Vice President, TEVA Pharmaceutical Industries,

More information

ICH CRA Certification Guide March 2009

ICH CRA Certification Guide March 2009 ICH CRA Certification Guide March 2009 ICH CRA CERTIFICATION GUIDE... 1 GENERAL INFORMATION... 2 BENEFITS OF CERTIFICATION... 2 INDUSTRY RECOGNITION... 2 ABOUT THE EXAM... 2 CRA DEFINITION... 2 REQUIREMENTS

More information

A responsible approach to clinical trials. Bioethics in action

A responsible approach to clinical trials. Bioethics in action A responsible approach to clinical trials Bioethics in action What is bioethics? At Novo Nordisk bioethics is the expression used for all ethical issues related to the use of life science technologies

More information

NATIONAL HEALTH COUNCIL RESOLUTION Nº 251, DATED 7 AUGUST 1997

NATIONAL HEALTH COUNCIL RESOLUTION Nº 251, DATED 7 AUGUST 1997 NATIONAL HEALTH COUNCIL RESOLUTION Nº 251, DATED 7 AUGUST 1997 Plenary of the National Health Council in its 15 th Special Meeting, held on 5 August 1997, in the exercise of its competencies, as set forth

More information

Goals & Objectives. Drug Development & the FDA Pharmacy 309. Outline. An History of Disasters. Be able to describe

Goals & Objectives. Drug Development & the FDA Pharmacy 309. Outline. An History of Disasters. Be able to describe Drug Development & the FDA Pharmacy 309 Tom Hazlet, Pharm.D., Dr.P.H. 616-2732 thazlet@u... Goals & Objectives Be able to describe the major regulatory events in the drug development process the concepts

More information

Data Management Unit Research Institute for Health Sciences, Chiang Mai University

Data Management Unit Research Institute for Health Sciences, Chiang Mai University Data Management Unit Research Institute for Health Sciences, Chiang Mai University Clinical Data Management is the process of handling data from clinical trials. The inherent goal of any clinical data

More information

Infoset builds software and services to advantage business operations and improve patient s life

Infoset builds software and services to advantage business operations and improve patient s life Infoset builds software and services to advantage business operations and improve patient s life Clinical Data Management ecrf & EDC Patient Support Programs Medication Adherence Mobile e-health Big Data

More information

Annex 7 Guidelines for the preparation of a contract research organization master file

Annex 7 Guidelines for the preparation of a contract research organization master file World Health Organization WHO Technical Report Series, No. 957, 2010 Annex 7 Guidelines for the preparation of a contract research organization master file Background 1. General information 2. Quality

More information

The Clinical Trials Process an educated patient s guide

The Clinical Trials Process an educated patient s guide The Clinical Trials Process an educated patient s guide Gwen L. Nichols, MD Site Head, Oncology Roche TCRC, Translational and Clinical Research Center New York DISCLAIMER I am an employee of Hoffmann-

More information

Japan PMDA and CDISC Standards. Yuki Ando Senior Scientist for Biostatistics Pharmaceuticals and Medical Devices Agency (PMDA)

Japan PMDA and CDISC Standards. Yuki Ando Senior Scientist for Biostatistics Pharmaceuticals and Medical Devices Agency (PMDA) Japan PMDA and CDISC Standards Yuki Ando Senior Scientist for Biostatistics Pharmaceuticals and Medical Devices Agency (PMDA) CDISC 2012 1 Outline New drug review process in Japan Task force for advanced

More information

Guideline for Industry

Guideline for Industry Guideline for Industry The Extent of Population Exposure to Assess Clinical Safety: For Drugs Intended for Longterm Treatment of Non-Life- Threatening Conditions ICH-E1A March 1995 GUIDELINE FOR INDUSTRY

More information

Sheffield Kidney Institute. Planning a Clinical Trial

Sheffield Kidney Institute. Planning a Clinical Trial Planning a Clinical Trial Clinical Trials Testing a new drug Ethical Issues Liability and Indemnity Trial Design Trial Protocol Statistical analysis Clinical Trials Phase I: Phase II: Phase III: Phase

More information

COMMITTEE FOR VETERINARY MEDICINAL PRODUCTS GUIDELINE FOR THE CONDUCT OF POST-MARKETING SURVEILLANCE STUDIES OF VETERINARY MEDICINAL PRODUCTS

COMMITTEE FOR VETERINARY MEDICINAL PRODUCTS GUIDELINE FOR THE CONDUCT OF POST-MARKETING SURVEILLANCE STUDIES OF VETERINARY MEDICINAL PRODUCTS The European Agency for the Evaluation of Medicinal Products Veterinary Medicines and Information Technology EMEA/CVMP/044/99-FINAL COMMITTEE FOR VETERINARY MEDICINAL PRODUCTS GUIDELINE FOR THE CONDUCT

More information

Guidance for Industry COMPUTERIZED SYSTEMS USED IN CLINICAL TRIALS

Guidance for Industry COMPUTERIZED SYSTEMS USED IN CLINICAL TRIALS Guidance for Industry COMPUTERIZED SYSTEMS USED IN CLINICAL TRIALS U.S. Department of Health and Human Services Food and Drug Administration Center for Biologic Evaluation and Research (CBER) Center for

More information

IOWA STATE UNIVERSITY Institutional Review Board. Reporting Adverse Events and Unanticipated Problems Involving Risks to Subjects or Others

IOWA STATE UNIVERSITY Institutional Review Board. Reporting Adverse Events and Unanticipated Problems Involving Risks to Subjects or Others IOWA STATE UNIVERSITY Institutional Review Board Reporting Adverse Events and Unanticipated Problems Involving Risks to Subjects or Others Introduction This policy details the Institutional Review Board

More information

Regulatory Considerations for Conducting Clinical Trials In India

Regulatory Considerations for Conducting Clinical Trials In India Regulatory Considerations for Conducting Clinical Trials In India By Mukesh Kumar, PhD & Surinder Kher, MD In the last few years, there has been increasing interest in the pharmaceutical industry in outsourcing

More information

ICH Topic E 2 A Clinical Safety Data Management: Definitions and Standards for Expedited Reporting. Step 5

ICH Topic E 2 A Clinical Safety Data Management: Definitions and Standards for Expedited Reporting. Step 5 European Medicines Agency June 1995 CPMP/ICH/377/95 ICH Topic E 2 A Clinical Safety Data Management: Definitions and Standards for Expedited Reporting Step 5 NOTE FOR GUIDANCE ON CLINICAL SAFETY DATA MANAGEMENT:

More information

Synergizing global best practices in the CRO industry

Synergizing global best practices in the CRO industry Synergizing global best practices in the CRO industry KREARA - India Established on April 24 th 2004 Contract Research Services to Pharmaceutical companies Clinical Data management and Biometrics Interactive

More information

Lessons Learned from the QC Process in Outsourcing Model Faye Yeh, Takeda Development Center Americas, Inc., Deerfield, IL

Lessons Learned from the QC Process in Outsourcing Model Faye Yeh, Takeda Development Center Americas, Inc., Deerfield, IL ABSTRACT PharmaSUG 2015 Paper TT11 Lessons Learned from the QC Process in Outsourcing Model Faye Yeh, Takeda Development Center Americas, Inc., Deerfield, IL As more and more companies in the pharmaceutical

More information

The Concept of Quality in Clinical Research. Dorota Śwituła Senior Clinical Quality Assurance Advisor

The Concept of Quality in Clinical Research. Dorota Śwituła Senior Clinical Quality Assurance Advisor The Concept of Quality in Clinical Research Dorota Śwituła Senior Clinical Quality Assurance Advisor 1 Agenda What is quality? How we define quality in clinical research? The standard components of a Quality

More information

Not All Clinical Trials Are Created Equal Understanding the Different Phases

Not All Clinical Trials Are Created Equal Understanding the Different Phases Not All Clinical Trials Are Created Equal Understanding the Different Phases This chapter will help you understand the differences between the various clinical trial phases and how these differences impact

More information

Topics for today. Issues: Regulatory Obligations Post-marketing Adverse Event Reporting; MDRs and Safety Reports. Post-marketing Submissions

Topics for today. Issues: Regulatory Obligations Post-marketing Adverse Event Reporting; MDRs and Safety Reports. Post-marketing Submissions Issues: Regulatory Obligations Post-marketing Adverse Event Reporting; MDRs and Safety Reports Martha A. Feldman, RAC Drug & Device Development Co., Inc. Topics for today Post-approval requirements for

More information

Organization Profile. IT Services

Organization Profile. IT Services Introduction In today s scientific and medical world, various issues in clinical trials and research have permeated every society and every field in medicine. Ethics and in particular the quality of research

More information

Comparing JMP and SAS for Validating Clinical Trials Sandra D. Schlotzhauer, Chapel Hill, NC

Comparing JMP and SAS for Validating Clinical Trials Sandra D. Schlotzhauer, Chapel Hill, NC Paper 6-2010 Comparing JMP and SAS for Validating Clinical Trials Sandra D. Schlotzhauer, Chapel Hill, NC Abstract When validating clinical trial analyses, an independent programmer typically confirms

More information

Role of the Investigational Drug Services (IDS) in the Management of Investigational Drugs

Role of the Investigational Drug Services (IDS) in the Management of Investigational Drugs Role of the Investigational Drug Services (IDS) in the Management of Investigational Drugs Charlesworth Rae, BS, PharmD, JD Investigational Drug Pharmacist July 2012 1 Outline of Presentation I. Introduction

More information

From The Little SAS Book, Fifth Edition. Full book available for purchase here.

From The Little SAS Book, Fifth Edition. Full book available for purchase here. From The Little SAS Book, Fifth Edition. Full book available for purchase here. Acknowledgments ix Introducing SAS Software About This Book xi What s New xiv x Chapter 1 Getting Started Using SAS Software

More information

History and Principles of Good Clinical Practice

History and Principles of Good Clinical Practice History and Principles of Good Clinical Practice Cristina E. Torres, Ph.D. Social Science Professor, UPM-NIH FERCAP Coordinator ICH: International Conference on Harmonization GCP: Good Clinical Practices

More information

Data Quality in Clinical Trials: a Sponsor's view

Data Quality in Clinical Trials: a Sponsor's view Data Quality in Clinical Trials: a Sponsor's view Elena Carzana Data Manager Chiesi Farmaceutici Padova, 27 th September 2012 IV BIAS ANNUAL CONGRESS Data Quality in Clinical Trials Agenda Definition Impacts

More information

Study Start-Up SS-204.01. STANDARD OPERATING PROCEDURE FOR Site Initiation Visit (SIV)

Study Start-Up SS-204.01. STANDARD OPERATING PROCEDURE FOR Site Initiation Visit (SIV) Study Start-Up SS-204.01 STANDARD OPERATING PROCEDURE FOR Site Initiation Visit (SIV) Approval: Nancy Paris, MS, FACHE President and CEO 08 March 2012 (Signature and Date) Approval: Frederick M. Schnell,

More information

Advancing research: a physician s guide to clinical trials

Advancing research: a physician s guide to clinical trials Advancing research: a physician s guide to clinical trials Recruiting and retaining trial participants is one of the greatest obstacles to developing the next generation of Alzheimer s treatments Alzheimer

More information

Guidance Notes for Applicants of the Certificate for Clinical Trial on Medical Device

Guidance Notes for Applicants of the Certificate for Clinical Trial on Medical Device Guidance Notes for Applicants of the Certificate for Clinical Trial on Medical Device List of Contents Page 1. Introduction 1.1 The Medical Device Administrative Control System and the 3 proposed legislation

More information

REGULATORY ENVIRONMENT

REGULATORY ENVIRONMENT 1. Introduction REGULATORY ENVIRONMENT Research and development work, pre-clinical tests, clinical studies, facilities, and the manufacture and sale of the Company s products are and will continue to be

More information

Importing pharmaceutical products to China

Importing pharmaceutical products to China Importing pharmaceutical products to China Imported pharmaceutical products need pre-market approval before entering the Chinese market Imported drugs for human use are required to obtain pre-market approval

More information

MINISTRY OF HIGHER EDUCATION UNIVERSITY OF HAIL COLLEGE OF PHARMACY

MINISTRY OF HIGHER EDUCATION UNIVERSITY OF HAIL COLLEGE OF PHARMACY MINISTRY OF HIGHER EDUCATION UNIVERSITY OF HAIL COLLEGE OF PHARMACY Academic Reference Standards of Pharm.-D Program College of Pharmacy-University of Hail May The Major shift in the health-care system

More information

Statistical Operations: The Other Half of Good Statistical Practice

Statistical Operations: The Other Half of Good Statistical Practice Integrating science, technology and experienced implementation Statistical Operations: The Other Half of Good Statistical Practice Alan Hopkins, Ph.D. Theravance, Inc. Presented at FDA/Industry Statistics

More information

LIBRARY GUIDE: Clinical Medical Device

LIBRARY GUIDE: Clinical Medical Device LIBRARY GUIDE: Clinical Medical Device Table of Contents Overview... 3 Clinical Curriculum Core Program Course Descriptions: A Tour of Health Canada (PHDV89)...5 A Tour of Health Europe (PHDV90)...5 A

More information

Clinical trials in haemophilia

Clinical trials in haemophilia Clinical trials in haemophilia Dr. Paul Giangrande Oxford Haemophilia and Thrombosis Centre & Nuffield Department of Clinical Medicine University of Oxford paul.giangrande@ndm.ox.ac.uk Why do clinical

More information

Prospect of ICT Utilization at Core Clinical Research Hospitals

Prospect of ICT Utilization at Core Clinical Research Hospitals Prospect of ICT Utilization at Core Clinical Research Hospitals Koki Akahori One of Fujitsu s endeavors in healthcare is to develop coordinated solutions for medicine and pharmaceuticals, and is focusing

More information

TRANSATLANTIC TRADE AND INVESTMENT PARTNERSHIP

TRANSATLANTIC TRADE AND INVESTMENT PARTNERSHIP DISCLAIMER: The EU reserves the right to make subsequent modifications to this text and to complement its proposals at a later stage, by modifying, supplementing or withdrawing all, or any part, at any

More information

POST-APPROVAL SAFETY DATA MANAGEMENT: DEFINITIONS AND STANDARDS FOR EXPEDITED REPORTING E2D

POST-APPROVAL SAFETY DATA MANAGEMENT: DEFINITIONS AND STANDARDS FOR EXPEDITED REPORTING E2D INTERNATIONAL CONFERENCE ON HARMONISATION OF TECHNICAL REQUIREMENTS FOR REGISTRATION OF PHARMACEUTICALS FOR HUMAN USE ICH HARMONISED TRIPARTITE GUIDELINE POST-APPROVAL SAFETY DATA MANAGEMENT: DEFINITIONS

More information

Did you know? Accenture can deliver business outcome-focused results for your life sciences research & development organization like these:

Did you know? Accenture can deliver business outcome-focused results for your life sciences research & development organization like these: How can Accenture Accelerated R&D BPO Services help you achieve greater business value? Did you know? Accenture can deliver business outcome-focused results for your life sciences research & development

More information

Guidance notes. for Patient Safety and Pharmacovigilance in Patient Support Programmes

Guidance notes. for Patient Safety and Pharmacovigilance in Patient Support Programmes Guidance notes for Patient Safety and Pharmacovigilance in Patient Support Programmes 9 May 2011 Approval Status Authors The ABPI Pharmacovigilance Expert Network Change History N/A Approval Date 9 May

More information

Use of standards: can we really be analysis ready?

Use of standards: can we really be analysis ready? Standards in analysis & reporting Use of standards: can we really be analysis ready? Analysis ready? Why? Reducing time to market/approval Reducing time to delivery Reducing re work Designing subsequent

More information

Adverse Events in Clinical Trials: Definitions and Documentation

Adverse Events in Clinical Trials: Definitions and Documentation Clinical and Translational Science Institute / CTSI at the University of California, San Francisco Welcome to Online Training for Clinical Research Coordinators Adverse Events in Clinical Trials: Definitions

More information

The Importance of Good Clinical Data Management and Statistical Programming Practices to Reproducible Research

The Importance of Good Clinical Data Management and Statistical Programming Practices to Reproducible Research The Importance of Good Clinical Data Management and Statistical Programming Practices to Reproducible Research Eileen C King, PhD Research Associate Professor, Biostatistics Acting Director, Data Management

More information

Clinical evaluation Latest development in expectations EU and USA

Clinical evaluation Latest development in expectations EU and USA Clinical evaluation Latest development in expectations EU and USA Medical Devices: staying ahead of regulatory developments Gert Bos BSI Israel 22 April - Herzliya Copyright 2012 BSI. All rights reserved.

More information

KCR Data Management: Designed for Full Data Transparency

KCR Data Management: Designed for Full Data Transparency KCR Data Management: Designed for Full Data Transparency 6% Observational 4% Phase IV 2% Device 11% Phase I 28% Phase II 49% Phase III The quality of study data relies first and foremost on the quality

More information

Laurie Shaker-Irwin, Ph.D., M.S. Co-Leader, Regulatory Knowledge and Research Ethics UCLA Clinical and Translational Science Institute

Laurie Shaker-Irwin, Ph.D., M.S. Co-Leader, Regulatory Knowledge and Research Ethics UCLA Clinical and Translational Science Institute Laurie Shaker-Irwin, Ph.D., M.S. Co-Leader, Regulatory Knowledge and Research Ethics UCLA Clinical and Translational Science Institute Understand the protocol completely Recognize institutional polices

More information

To Certify or Not to Certify

To Certify or Not to Certify To Certify or Not to Certify Sandra Halvorson, BA, CCRP Clinical Research Coordinator II CIBMTR Minneapolis Campus Sue Logan, BS, CCRP Clinical Research Coordinator II CIBMTR Minneapolis Campus November

More information

To Certify or Not to Certify Sandra Halvorson, BA, CCRP

To Certify or Not to Certify Sandra Halvorson, BA, CCRP To Certify or Not to Certify Sandra Halvorson, BA, CCRP Clinical Research Coordinator II CIBMTR Minneapolis Campus Sue Logan, BS, CCRP Clinical Research Coordinator II We have no financial relationships

More information

From Validating Clinical Trial Data Reporting with SAS. Full book available for purchase here.

From Validating Clinical Trial Data Reporting with SAS. Full book available for purchase here. From Validating Clinical Trial Data Reporting with SAS. Full book available for purchase here. Contents Preface ix Acknowledgments xi Chapter 1 Pharmaceutical Industry Overview 1 1.1 Introduction 2 1.2

More information

GENERAL CONSIDERATIONS FOR CLINICAL TRIALS E8

GENERAL CONSIDERATIONS FOR CLINICAL TRIALS E8 INTERNATIONAL CONFERENCE ON HARMONISATION OF TECHNICAL REQUIREMENTS FOR REGISTRATION OF PHARMACEUTICALS FOR HUMAN USE ICH HARMONISED TRIPARTITE GUIDELINE GENERAL CONSIDERATIONS FOR CLINICAL TRIALS E8 Current

More information

exactly. The need for efficiency in developing effective new therapeutics has never been greater.

exactly. The need for efficiency in developing effective new therapeutics has never been greater. exactly. The need for efficiency in developing effective new therapeutics has never been greater. As demands on the global healthcare system increase and treating disease becomes more complex, the research,

More information

The Study Site Master File and Essential Documents

The Study Site Master File and Essential Documents The Study Site Master File and Essential Documents Standard Operating Procedure Office of Health and Medical Research Queensland Health SOP reference: 002 Version number: 1 Effective date: 01 June 2010

More information

Job Profile Clinical Research Associate III (CRA)

Job Profile Clinical Research Associate III (CRA) PART 1 - PROFILE You are an experienced CRA with a strong background in Clinical Research who is passionate about drug development and are seeking a challenging and rewarding career in a quality focussed

More information

Regulatory Pathways for Licensure and Use of Ebola Virus Vaccines During the Current Outbreak FDA Perspective

Regulatory Pathways for Licensure and Use of Ebola Virus Vaccines During the Current Outbreak FDA Perspective Regulatory Pathways for Licensure and Use of Ebola Virus Vaccines During the Current Outbreak FDA Perspective Office of Vaccines Research and Review Center for Biologics Evaluation and Research U.S. Food

More information