Sunday, April 28, 2013

Age Calculation in Clinical Trial Data Analysis with SAS Examples


In clinical trials, subject’s age is a critical demographic variable that needs to be collected. Age may be used in checking the inclusion/exclusion criteria, in sub-group analysis, in prognostic factor analysis, and so on. However, the Age variable is not directly collected on the case report form. Instead, the birth date is collected. Subject’s age will then need to be calculated based on the birth date and the date of screening visit. There are many ways in calculating the age and the results are slightly different. There seems to be no consensus in industry or CDISC indicating which method should be used. There was a paper discussing “How to Create Variables Related to Age”, some of the new functions were not included in the discussion.

Since we use SAS to analyze the clinical trial data, I listed the various ways to calculate the Age using SAS.

/*Macro AGE1 uses SAS INTCK function*/
%macro age1(from=,to=);
   intck ('year', &from, &to) -
       ((month(&to) < month(&from)) or
       ((month(&to) = month(&from)) and (day(&to) < day(&from))));
%mend;

/*Macro AGE2 uses SAS INTCK function*/
%macro age2(from=,to=); 
      floor ((intck('month',&from,&to) - (day(&to) < day(&from))) / 12)
%mend age2;


data try;
  input bdate date9. idate date9.;
  age1=%age1(from=bdate,to=idate); 
  age2=%age2(from=bdate, to=idate);
  age3=yrdif(bdate,idate, 'Age');       *This method uses SAS YRDIF function;
  age365=(idate-bdate)/365;           *This method uses 365 as divider;
  age36525=(idate-bdate)/365.25;  *This method uses 365.25 as divider;
  age36525plus1=Floor(((idate-bdate)+1)/365.25);   *This method adds 1 and the divide by 365.25;
datalines;
01JAN12  31DEC12    /*this is one day short of one year*/
01JAN12  31DEC12    /*this is exactly one year*/
31DEC12  01JAN13    /*this is exactly one day, but cross the year*/
01JAN04  01JAN13    /*this is exactly nine years*/
01JUL12  01JAN13    /*this is 184 days*/
;
run;
proc print;
format bdate date9. idate date9.;
run;

bdate
idate
age1
age2
age3
age365
age36525
age36525
plus1
01JAN2012
31DEC2012
0
0
1.00000
1.00000
0.99932
1
01JAN2012
01JAN2013
1
1
1.00000
1.00274
1.00205
1
31DEC2012
01JAN2013
0
0
0.00278
0.00274
0.00274
0
01JAN2004
01JAN2013
9
9
9.00000
9.00822
9.00205
9
01JUL2012
01JAN2013
0
0
0.50000
0.50411
0.50376
0

Based on the outputs, the calculation using YRDIF seems to be a good option. The use of YRDIF function is detailed in the SAS online document. The simple way using 365.25 as divider is actually a pretty good option. There is also an article in SAS blog discussing this. For an adult study, all of these approaches in calculating Age seem to be ok. However, for pediatric studies, different approaches could give quite bit different Age calculations.  

On the regulatory side, there seems to be various ways in calculating the Age based on the documents submitted to FDA. In BLA 125145, Age in month was calculated as (1st vaccination date - Date of birth + 1) / (365.25/12). In SBA for EUFLEXXA approval, Age was calculated as: age = (date of informed consent - date of birth) / 365.25. In clinical review document for Actemra, the duration in study (in years) was calculated as:  
Duration in study (years) = (date of last assessment – date of first TCZ dose +1) 365.25).

Saturday, April 13, 2013

Hy’s Law and Drug-Induced Liver Injury (DILI)


For clinical laboratory data analyses, statistical tabulations are typically generated to list the number of subjects in each treatment group with ALT, AST, TBL with n times of ULN (upper limit of normal (range)). For AST and ALT, n=3 and for TBL, n=2.

ALT, AST, TBL are all “liver enzymes” and are liver function test parameters. Other liver test parameters may also include GGTP and ALP, and others.
  • ALT (alanine aminotransferase or SGPT)
  • AST( aspartate transaminase or  SGOT)
  • TBL (total bilirubin)
  • GGTP (gamma-glutamyl transpeptidase)
  • ALP (alkaline phosphatase)

In clincal trials, liver test parameters are the basis for assessing the so-called DILI (drug-induced liver injury).

Acording to FDA’s guidance “ Drug-Induced Liver Injury: Premarketing Clinical Evaluation“, when assessing the DILI, Hy’s law can be followed. Hy’s law is based on the work by Hy Zimmerman, a major scholar of drug-induced liver injury.
Hy’s Law cases have the following three components:
1.      The drug causes hepatocellular injury, generally shown by a higher incidence of 3-fold or greater elevations above the ULN of ALT or AST than the (nonhepatotoxic) control drug or placebo
2.      Among trial subjects showing such AT elevations, often with ATs much greater than 3xULN, one or more also show elevation of serum TBL to >2xULN, without initial findings of cholestasis (elevated serum ALP)
3.      No other reason can be found to explain the combination of increased AT and TBL, such as viral hepatitis A, B, or C; preexisting or acute liver disease; or another drug capable of causing the observed injury
 Finding one Hy’s Law case in the clinical trial database is worrisome; finding two is considered highly predictive that the drug has the potential to cause severe DILI when given to a larger population.

Hy’s law and DILI assessment is also specifically mentioned in FDA CDER Review Template “Clinical Safety Review of an NDA or BLA
At present, it appears that a potential for severe hepatotoxicity may be signaled by a set of findings sometimes called Hy’s Law, based on the observation by Hy Zimmerman, a major scholar of drug-induced liver injury (DILI), that a pure hepatocellular injury leading to jaundice had serious implications, a 10 to 50 percent mortality. Any Hy’s Law cases should be identified in the treatment group (e.g., subjects with any elevated aminotransferase (AT) of >3x upper limit of normal (ULN), alkaline phosphotase (ALP) >2xULN, and associated with an increase in bilirubin ≥2xULN).
My colleague used to argue with me about the use of 3 times x ULN for ALT and AST and cited the NCI’s CTC (common toxicity criteria) as the evidence. In NCI’s Common Toxicity Criteria, the 2.5 x ULN elevation of ALT and AST would be considered as adverse event with Grade 2 (corresponding to moderate AE severity). However, the NCI has shifted the Common Toxicity Criteria to CTCAE (Common Terminology Criteria for Adverse Events). In CTCAE, AST, ALT is consistent with the FDA guidance (i.e., 3xULN would be considered as grade 2)

Recently, FDA, industry and academia contemplate a new approach to gauging drug induced liver injury by using individual patients’ baseline (instead of ULN) liver enzyme measurements, a move that some say could eliminate problems with the use of the upper limit of normal (ULN) and allow for the assessment of DILI in cases where there is underlying liver injury.

Further Reading:

Wednesday, March 27, 2013

Randomized Start Design (RSD)

FDA recently issued its guidance "Alzheimer’s Disease: Developing Drugs for the Treatment of Early Stage Disease ". The guidance cited alternative trial designs and the Randomized Start Design (RSD) was recommended.

A randomized-start or randomized-withdrawal trial design (with clinical outcome measures) appears to be a more convincing means of demonstrating such an effect. For ethical reasons, a randomized-start design would be most appropriate for use in AD. In this study design, patients are randomized to drug and placebo, and at some point, placebo patients are crossed over to active treatment. If patients in the trial who were initially on placebo then assigned to active treatment fail to catch up (after a reasonable period of time) to patients who received active treatment for the entire duration of the trial, a disease modifying effect of treatment would have been shown. We are unaware of any instances to date where this design has been successfully used in a clinical trial to establish a disease modifying effect.

RSD has been discussed for its use in many CNS and neurological diseases such as Alzheimer’s disease, Parkinson’s disease, Multiple sclerosis, Post Polio syndrome. These diseases all have very slow progression. Treatment effect for these diseases can be separated as effect on symptomatic component and the disease modifying component.  "Disease modifying" can be defined as treatments or interventions that affect the underlying pathophysiology of the disease and have a beneficial outcome on the course of the disease.

A similar design to RSD may be called "delayed start design". The delayed-start design is used in order to overcome a problem that occurs in similar studies of medicines that may slow the progression of the disease but also have an effect on symptoms. Typically in these studies used to determine the effects of a drug on slowing disease progression, the medicines or placebo are started and stopped in all patients at the same time. After stopping the drugs, the researchers then wait for several weeks to measure the patients’ symptoms. This waiting time is referred to as the “washout” period, in which the effects of the drug are “washed out” of the body. Patients whose symptoms remain better at the end of the washout period time are presumed to have had their disease slowed by the treatment. However, no one knows what length of time is needed for a true symptomatic washout period. When a study uses a delayed-start design, all patients are presumed to be experiencing the same degree of symptom relief at the end of the trial because they are all taking the medication. If the patients who have received the medicine for the longer period of time have fewer symptoms, it is presumed to be due to the medicine slowing the effects of the disease.

Further reading:

Tuesday, March 19, 2013

A New Drug Approval Pathway - Breakthrough Therapy Designation

Recently, a new drug approval pathway proposed by FDA has drawn attentions to many pharmaceutical/biotechnology companies. Last year, The Food and Drug Administration Safety and Innovation Act (FDASIA) included a provision that allows sponsors to request that their drug be designated as a Breakthrough Therapy. Breakthrough status means the companies will have closer communication with top FDA staff to move drugs for serious diseases to market more quickly, potentially with data from an expanded Phase 1 trial.


Only a small portion of drugs can obtain the Breakthrough Therapy designation. The drugs for treating the serious diseases with unmet medical needs may be easier to obtain the Breakthrough status. The drugs targeting the small sub-population of certain disease may also be qualified for Breakthrough Therapy designation (see the example for Vertex' Kalydeco). The clinical trial that designed to target the small sub-population is called enrichment clinical trial design (i.e., choosing sub-population that is likely to respond to the study drug, therefore design a smaller study) . See recent FDA guidance.
Only a small portion of drugs can obtain the Breakthrough Therapy designation. The drugs for treating the serious disease with unmet medical needs may be easier to obtain the Breakthrough status. The drugs targeting the small sub-population of certain disease may also be qualified for Breakthrough Therapy designation (see the example for Vertex' Kalydeco). The clinical trial that designed to target the small sub-population is called enrichment clinical trial design (i.e., choosing sub-population that is likely to respond to the study drug, therefore design a smaller study) . See
recent FDA guidance.
FDA Existing Drug Approval Pathways are:

In addition, there is a movement for Patient oriented drug development (i.e., the study endpoint should measure ‘feel, function, or survival’ of the patients). See
FDA presentations on this topic.
In EU, the Adaptive Licensing is gaining more interests. The idea of Adaptive Licensing is to allow a drug to be launched onto the market with certain restrictions, based on its benefit/risk profile. Those restrictions could then be gradually removed as more positive data is forthcoming and more favorable benefit/risk profile. However, in US, there is no movement about Adaptive Licensing isea.  


Wednesday, February 27, 2013

COPD as a Syndrome


Typically, in medical journals, we don’t like to include a lot of formula or mathematical expressions in articles. However I recently read a paper where a mathematical expression is used to describe the COPD as a syndrome. It is a good use of mathematical expression in this case.


John J. Reilly “COPD and declining FEV1 – time to divide and conquer?” (NEJM 359:15: 1616-1618 OCT 2009)

“In fact, COPD in the singular is probably a misnomer. It is more appropriate to view COPD as a syndrome that encompasses a variety of obstructive diseases that share a common exposure but differ in terms of mechanism of disease and response to therapy. This concept is expressed in the mathematical notation


 
In which COPDn represents subgroups of COPD. As a reflection of this recognized heterogeneity, investigator have developed new classification systems, such as the BODE index, which evaluates the body-mass index, the degree of airflow obstruction and dyspnea, and exercise capacity to create a 10-point scale in which higher scores indicate a higher risk of death. In addition, investigators have attempted to define other homogeneous subgroups of patients with COPD. “

For many complicated diseases, when we have a better understanding about the disease, we will see that one specific disease may have many different manifestations or phenotypes – so called ‘heterogeneity’. When designing a clinical trial for a disease with heterogeneity, it may be difficult to show the treatment effect on the patient population as a whole. The drug may only be effective on one of many specific sub-populations. The difficult is usually in finding this specific sub-population. The newly issued FDA guidance “Enrichment Strategies for Clinical Trials to Support Approval of Human Drugs and
Biological Products” is attempting to address this issue. 

Thursday, February 14, 2013

Current Topics in Bioethics - A Free Seminar


Free Seminar on Current Topics in Bioethics By Sheila Mikhail, founder of Life Sciences Law (LSL)

The field of bioethics merges various aspects of several disciplines, including biology, medicine, politics, and law. The role of human subjects in the investigation of therapeutics gives rise to several concerns within the realm of bioethics, with such concerns increasing over time.

This presentation will provide an overview of several areas with respect to bioethics, including:

(1) ensuring the safety of study participants in human clinical trials as it relates to the process of obtaining and ensuring informed consent,

(2) the use of drugs that have not yet been approved by the FDA for patients who have no other treatment options available under compassion use principles,

(3) the ownership of biological samples isolated from patients, and

(4) the patentability of isolated gene sequences.


References:

Saturday, February 02, 2013

Should Expected Clinical Outcomes of the Disease under Study, which are study endpoints, be reported as AEs/SAEs?


Generally not. The new IND safety reporting regulation and associated guidance state that study endpoints that are Serious Adverse Events (SAEs) (i.e., the study is evaluating whether the Investigational Medicinal Products reduces the rate of the SAE) do not require immediate reporting to the sponsor unless there is evidence suggesting a causal relationship between the drug and the event. For example, a death ordinarily would not require immediate reporting to the sponsor as an SAE under a trial designed to compare all-cause mortality in subjects receiving either drug treatment or a placebo. On the other hand, in the same trial with an all-cause mortality endpoint, if the death occurred as a result of an anaphylactic reaction that coincided with initial exposure to the drug, or as a result of fatal hepatic necrosis, the death must be immediately reported to the sponsor as a SAE

Study endpoint information should be collected, tracked, and monitored, usually by a data monitoring committee, during the course of the study. The sponsor must report study endpoints to the FDA according to the protocol and not as IND safety reports, except in unusual cases as described above.

Some protocols instruct investigators to record and report all untoward events that occur during a study as AEs/SAEs, which could include common symptoms of the disease under study and/or other expected clinical outcomes that are not study endpoints. This approach enables frequency comparisons of all events between treatment groups, but can make event recording in the CRF burdensome, result in more expedited reports from investigators to sponsor, and fill safety databases with many untoward events that most likely have no relationship to study treatment and that could obscure signal identification.

In practice, some companies take the conservative approach and report the underlying disease symptoms / outcomes as the adverse events or serious adverse events. To report all  underlying disease symptoms / outcomes as adverse events is overkill and the symptom worsening could just be the lack of efficacy for the study drug. It may be reasonable not to report the underlying disease symptoms / outcomes as adverse events, but if the underlying disease symptoms / outcomes result in the consequences that meet the criteria for serious adverse event (see the SAE criteria in ICH E2D or EMA document ICH topic E2 A), the underlying disease symptoms / outcomes should be reported as AE and SAE. This seems to be the approach that a lot of pharmaceutical companies are taking.

In a clinical trial with tiotropoim in COPD patients, Boehringer-Ingelheim reported the most commonly serious adverse events as the following:
“COPD exacerbations were the most commonly reported serious adverse events. The incidence of COPD exacerbations reported as SAEs was lower in the Tiotropium group compared to placebo group (4.2% vs. 6.7% of patients, respectively).”
COPD exacerbation is underlying disease symptom and efficacy measure of the COPD, but if COPD exacerbation requires the hospitalization (also meet the severe exacerbation definition), the COPD exacerbation would need to be reported as SAE even though the mild / moderate COPD exacerbation may not be reported as adverse event.

For a clinical trial with thrombolytic agents such as tPA, any bleeding event should be reported as AE. However, in trials in Hemophilia patients, the bleeding event is the manifestation for the underlying disease (hemophilia A). The bleed event should not be reported as AE unless it meet the SAE criteria in which case, the bleeding event should be reported as SAE.  Bleeding would also be included in the efficacy assessment.  It would be appropriate to specify in the study protocol what should be and what should not be reported. The following language would be adequate in Hemophilia trials.
“Spontaneous and trauma-related bleeding episodes are expected as usual events in subjects with severe Hemophilia A. Thus, bleeding episodes need not be reported as adverse events unless severe enough to be classified as a serious adverse events. “
 In the summary of approval document for ADVATE, the bleeding event (Hematoma)  is reported as serious and drug related adverse event.

The worst situation is that the rule for reporting is not explicitly specified in the study protocol and different investigational sites take different approaches (at investigator’s discretion) in reporting the AE/SAE for underline disease symptoms / outcomes. In this situation, data are inconsistent across different sites. 

Monday, January 14, 2013

Non-interventional Clinical Studies


For interventional clinical trials, there are clear regulatory guidelines to govern the development of the study protocol, the conduct of the study, and the layout of the clinical study report. The requirements for clinical study protocol are specified in ICH E6 (Guideline for Good Clinical Practice) and for clinical study report are specified in ICH E3 (Structure and Contents of Clinical Study Reports).

However, there are also non-interventional clinical studies such as Post-Marketing Surveillance (PMS), Post Authorization Safety Study (PASS), Pharmacovigilence study, Pharmacoepidemiologic Study, Drug utilization study, Retrospective and Prospective registry studies. They are clinical studies because the patient information is collected from various clinical sites. They are non-interventional because the sponsor does not provide the study drug and provide no specific requirements how the patients should be treated. The regulatory guidelines for this type of non-interventional clinical studies can sometimes be vague and not as clear as those for clinical trials. The ICH guidelines that were developed for clinical trials may not all be applicable to this type of non-interventional clinical studies.

Post-Marketing Surveillance (PMS) studies are non-interventional, observational, post-authorization studies where the medicinal product(s) is (are) prescribed in the usual manner in accordance with the terms of the marketing authorization (i.e. no study medication). The assignment of the patient to a particular therapeutic strategy is not decided in advance by the trial protocol but falls within current practice and the prescription of the medicine is clearly separated from the decision to include the patient in the study. No additional diagnostic or monitoring procedures shall be applied to the patients and epidemiological methods shall be used for the analysis of collected data.

Post Authorization Safety Study (PASS) in EU: A post-authorization safety study (PASS) is defined in Directive 2001/83/EC (DIR) Art 1(15) as any study relating to an authorized medicinal product conducted with the aim of identifying, characterizing or quantifying a safety hazard, confirming the safety profile of the medicinal product, or of measuring the effectiveness of risk management measures.

Pharmacoepidemiology study: A pharmacoepidemiology study applies epidemiological methods to studies of the clinical use of drugs in populations. A modern definition of pharmacoepidemiology is: «the study of the use and effects/side-effects of drugs in large numbers of people with the purpose of supporting the rational and cost-effective use of drugs in the population thereby improving health outcomes».

Drug utilization research: drug utilization study was defined by WHO in 1977 as «the marketing, distribution, prescription, and use of drugs in a society, with special emphasis on the resulting medical, social and economic consequences». Since then, a number of other terms have come into use and it is important to understand the interrelationships of the different domains.

Pharmacovigilance are terms used to refer to the monitoring of drug safety, for example, by means of spontaneous adverse-effect reporting systems, case-control and cohort studies.

Retrospective Registry: A retrospective study uses information on events that have taken place in the past. In most cases some or most of the data has already been gathered and stored in the registry. However and also in most cases, new data, but always on past events, may have to be requested. The data collection is typically through the medical charter review

Non interventional prospective studiesNon interventional prospective studies are prospective studies which are set up to investigate events that will take place after the study has been initiated. Post-marketing surveillance study may fall into this category. The main and very important difference between a clinical trial and a non interventional prospective study is that the data collection or patient-participation in the non interventional study does not interfere with the choice of treatment, sample collection, procedures, and the treatment itself, which should entirely follow standard hospital practices. Typically a non interventional prospective study behaves like a “fly on the wall” and will aim to collect information on how different centres deal with the same problem or type of patient. A non interventional prospective protocol cannot in any way set up conditions modifying either the treatment of the patient or the number or type of investigations the patients needs to be subjected to. It excludes the possibility of determining which treatment protocol should be used, randomiation or other types of patient allocation to a specific treatment, specified sample collection schedules, or collection of additional samples not included in the center’s routine procedures.


In terms of the elements required for the study protocol and the study report, there are different guidelines than the clinical trials. For PASS study, EMA: Guideline on good pharmacovigilance practices (GVP) Module VIII – Post-authorisation safety studies  should be followed for developing the study protocol and the study report. There are also recommendations on data collection, data quality, data analysis.


In the United States, the most relevant guidance is Good Pharmacovigilance Practices and Pharmacoepidemiologic Assessment and E2E Pharmacovigilance Planning which is mainly focusing on the post-marketing data collection on adverse events or adverse drug reactions.

The recent passed PDUFA V also emphasize the importance of pharmacovigilance:
 C. Conduct and support activities designed to modernize the process ofpharmacovigilance
1. Continued use of expanded database resources: A critical part of the
transformation of the drug safety program is maximizing the usefulness of
tools used for adverse event signal detection and risk assessment. Use of data
other than passive spontaneous reports, including population-based
epidemiological data and other types of observational data resources will
continue to enhance FDA’s capability to conduct targeted post-marketing
surveillance, evaluate class effects of drugs, and potentially conduct signal
detection using data resources other than reports from the Adverse Event
Reporting System (AERS).  FDA will continue training and development of
existing staff on the use of these resources, and develop the information
technology infrastructure needed to support access and analysis of data from
these resources.  

Sunday, January 06, 2013

Randomized Withdrawal Design and Randomized Discontinuation Trial


FDA recently issued its new guidance to industry “EnrichmentStrategies for Clinical Trials to Support Approval of Human Drugs andBiological Products”. The section D of the guidance detailed the Randomized Withdrawal Design as one of the enrichment strategies.

Randomized Withdrawal study design is not new and has been practically used in many drug trials and in NDA or BLA applications. It may be called 'randomized discontinuation trial' or 'randomized discontinuation design' in some literature. Randomized Withdrawal study design is especially popular in CNS and neurology areas.

According to ICH ICH Topic E 10 “Choice of Control Group in Clinical Trials”, the Randomized Withdrawal design is defined as:
 “In a randomized withdrawal trial, subjects receiving a test  treatment for a specified time are randomly assigned to continued treatment with the test treatment or to placebo (i.e., withdrawal of active therapy).  Subjects for such a trial could be derived from an organized open single-arm study, from an existing clinical cohort (but usually with a protocol-specified "wash-in" phase to establish the initial on-therapy baseline), from the active arm of a controlled trial, or from one or both arms of  an active control trial.  Any difference that emerges between the group receiving continued treatment and the group randomized to placebo would demonstrate the effect of the active treatment.  The pre-randomization observation period on treatment can be of any length; this approach can therefore be used to study long-term persistence of effectiveness when long-term placebo treatment would not be acceptable.  The post-withdrawal observation period could be of fixed duration or could use early escape or time to event (e.g., relapse  of depression) approaches.  As with the early escape design, careful attention should be paid to procedures for monitoring patients and assessing study endpoints to ensure that patients failing on an assigned treatment are identified rapidly. 

Randomized Withdrawal design is recommended in ICH E12A “PRINCIPLES FOR CLINICAL EVALUATION OF NEW ANTIHYPERTENSIVE DRUGS

In 2001, Nation Academies published a report “Small Clinical Trials: Issues and Challenges”. It stated the advantages and disadvantages of the Randomized Withdrawal Design:
 “The advantages of this study design are that individuals receiving the experimental intervention continue to do so only if they respond, whereas individuals receiving the placebo do so only until their symptoms return. Disadvantages include carryover effects, difficulties assessing whether the underlying disease process is still active, and long lag times to adverse events if the disease is in remission. This design is more appropriate in phase I and II trials involving healthy volunteers because it is less likely that effective treatments are being withdrawn from those who need it. In some studies, however, measurement of the placebo effect is essential (e.g., studies of drugs for the treatment of depression), and such studies might require the use of a randomized withdrawal design. In those cases, voluntary, informed consent is essential, as is the provision of care during the withdrawal period.”
Additional advantage of this design is to study the long-term efficacy or safety (withdrawal effect) and additional disadvantage is the longer overall study period (additional period is needed to identify responders).

Some of the practical cases of using the Randomized Withdrawal Design in clinical trial are:

  • Randomized withdrawal design used in the clinical trials for ADHD
  • Cystic Fibrosis-Dependent Exocrine Pancreatic Insufficiency trial used an open label period to establish the baseline for the randomized withdrawal period. The endpoint is the change from the baseline after the open label period to the end of the randomized withdrawal period
  • Flibanserin (a so-called Female Viagra drug) for the treatment of hypoactive sexual desire disorder (PSDD) in premenopausal women. One of the pivotal trials began with a 24-week open label phase, which then enrolled only “responders” into the randomized withdrawal phase
  • IGIV-C for the treatment of chronic inflammatory demyelinating polyradiculoneuropathy (ICE study): the trial had two randomization. The second randomization was only for responders (to IGIV-C or Placebo) from initial (the first) randomized period. In extension period, the randomized withdrawal design was employed. The responders were re-randomized to IGIV-C or Placebo to study the long-term efficacy by comparing the relapse rates and the time to relapse. Notice that the responders from Placebo group in initial (first) randomized period were also included in the randomized withdrawal period. This is purely for maintaining the blinding.

Sunday, December 02, 2012

Adverse Reaction and Drug-Related Adverse Event

In all clinical trials, it is important to collect the adverse event information accurately. It is very common to collect the adverse events and the characteristics of these adverse events (including seriousness, severity, causality to the study drug, and so on). The causality is usually assessed by the investigator using the categories of ‘not related, unlikely related, possibly related, and related’. These categories are used in ICH E2B examples and the CDASH standards. It is also very common to define the ‘drug-related adverse events’ as any adverse events assessed by the investigators as ‘possibly related’ or ‘related’. The statistical summaries will usually include the tables for drug-related adverse events.

When it comes to the product labels or package inserts, instead of using the term ‘drug-related adverse events’,  ‘adverse drug reaction (ADR)’ or simply “adverse reaction” is used.

Is the term ‘adverse reaction’ equivalent to the term ‘drug-related adverse event’? There is no formal guidance anywhere to indicate that the ‘adverse reaction’ and ‘drug-related adverse event’ are the same thing. In Statement about “Drug-related Adverse Events” of Dr Janet Woodcock before the Senate Committee on Health, Education, Labor, and Pensions in 2000, the terms of ‘drug-related adverse events” and “adverse drug reactions” were used interchangeably.

However, if we look at the formal definition of ‘adverse reactions’ in regulatory guidelines, there seems to be some differences between these two terms and ‘adverse reactions’ seem to enable the sponsor to make the judgment whether or not an adverse event is considered as ‘adverse reaction’, especially for the product labeling purpose. If this is the case, the term ‘adverse reaction’ will be different from the ‘drug-related adverse event’ since the drug-related adverse event is based on the investigator’s assessment.

In the United States, all product labels are required to follow the new formats according to FDA’s guidance “Labeling for Human Prescription Drug and Biological Products — Implementing the New Content and Format Requirements” issued in 2006. The new format requires the reporting of adverse reactions in section 6 of the package insert.

The guidance requires the following:

“• Most frequently occurring adverse reactions
 Information under the Adverse Reactions heading must include a listing of the most frequently occurring adverse reactions, even if they are included elsewhere in Highlights, and the criteria used to determine inclusion (e.g., incidence rate).  The listing should be concise, not lengthy or comprehensive.  This listing may include adverse reactions that are important for reasons other than frequency (e.g., leading to discontinuation or dosage adjustments) unless they are included elsewhere in Highlights (e.g., under Warnings and Precautions or Contraindications).

The adverse reactions listed as most frequently occurring or most common should be selected from the table of adverse reactions from clinical trials in the FPI.  Rates of most common adverse reactions vary, but should be appropriate to the nature of a drug’s adverse reactions profile and the size and composition of the safety database.  The criteria for determining inclusion must be identified along with the listing (e.g., >2%).  If adverse reaction profiles vary significantly for different indications, list the most common adverse reactions by indication.  Also note if different criteria for determining inclusion are used for different indications.”

FDA also issued a subsequent guidance on “Adverse Reactions Section of Labeling for Human Prescription Drug and Biological Products — Content and Format” that attempted to provide clarifications about the adverse reactions section of labeling. This guidance provided the definition for ‘adverse reaction’ and ‘adverse event’ as following:

“Adverse Reaction (21 CFR 201.57(c)(7)): For purposes of prescription drug labeling and this guidance, an adverse reaction is an undesirable effect, reasonably associated with the use of a drug, that may occur as part of the pharmacological action of the drug or may be unpredictable in its occurrence. This definition does not include all adverse events observed during use of a drug, only those for which there is some basis to believe there is a causal relationship between the drug and the occurrence of the adverse event. Adverse reactions may include signs and symptoms, changes in laboratory parameters, and changes in other measures of critical body function, such as vital signs and ECG.
 Adverse Event (or adverse experience): For the purposes of this guidance, the term adverse event refers to any untoward medical event associated with the use of a drug in humans, whether or not considered drug-related.”

Unfortunately, the definition of ‘Adverse reaction’ did not specify who (investigator or sponsor) to make the judgment about ‘reasonably associated with the use of a drug’ and what will be considered as ‘reasonably associated with the use of a drug’. Some people think that ‘unlikely related’ adverse events should also be considered as ‘adverse reactions’ since the association with the drug can not be totally eliminated.

In EMA’s document “CLINICAL SAFETY DATA MANAGEMENT: DEFINITIONS AND STANDARDS FOR EXPEDITED REPORTING” ICH Harmonised Tripartite Guideline, the definition of ‘adverse reaction’ is also discussed. The document provided the definition of ‘adverse reaction’ in two different situation: pre-approval  and the marketed product. The same definition is also echoed in ICH GCP Glossary.

“A. Basic Terms
Definitions for the terms adverse event (or experience), adverse reaction, and unexpected adverse reaction have previously been agreed to by consensus of the more than 30 Collaborating Centres of the WHO International Drug Monitoring Centre (Uppsala, Sweden). [Edwards, I.R., et al, Harmonisation in Pharmacovigilance. Drug Safety 10(2): 93-102, 1994.] Although those definitions can pertain to situations involving clinical investigations, some minor modifications are necessary, especially to accommodate the pre-approval,
development environment.
 The following definitions, with input from the WHO Collaborative Centre, have been agreed:
1. Adverse Event (or Adverse Experience)
Any untoward medical occurrence in a patient or clinical investigation subject
administered a pharmaceutical product and which does not necessarily have to have a causal relationship with this treatment. An adverse event (AE) can therefore be any unfavourable and unintended sign (including an abnormal laboratory finding, for example), symptom, or disease temporally associated with
the use of a medicinal product, whether or not considered related to the medicinal product.
 2. Adverse Drug Reaction (ADR)
In the pre-approval clinical experience with a new medicinal product or its new usages, particularly as the therapeutic dose(s) may not be established:
all noxious and unintended responses to a medicinal product related to any dose
should be considered adverse drug reactions.
The phrase "responses to a medicinal products" means that a causal relationship between a medicinal product and an adverse event is at least a reasonable possibility, i.e., the relationship cannot be ruled out.
 Regarding marketed medicinal products, a well-accepted definition of an adverse drug reaction in the post-marketing setting is found in WHO Technical Report 498 [1972] and reads as follows:
 A response to a drug which is noxious and unintended and which occurs at doses normally used in man for prophylaxis, diagnosis, or therapy of disease or for modification of physiological function.
 The old term "side effect" has been used in various ways in the past, usually to describe negative (unfavourable) effects, but also positive (favourable) effects. It is recommended that this term no longer be used and particularly should not be regarded as synonymous with adverse event or adverse reaction.
 3. Unexpected Adverse Drug Reaction
An adverse reaction, the nature or severity of which is not consistent with the
applicable product information (e.g., Investigator's Brochure for an unapproved
investigational medicinal product). (See section III.C.)
 B. Serious Adverse Event or Adverse Drug Reaction
During clinical investigations, adverse events may occur which, if suspected to be medicinal product-related (adverse drug reactions), might be significant enough to lead to important changes in the way the medicinal product is developed (e.g., change in dose, population, needed monitoring, consent forms). This is particularly true for reactions which, in their most severe forms, threaten life or function. Such reactions should be reported promptly to regulators.
Therefore, special medical or administrative criteria are needed to define reactions that, either due to their nature ("serious") or due to the significant, unexpected information they provide, justify expedited reporting.”

In 2006, EC issued “Detailed guidance on the collection, verification and presentation of adverse reaction reports arising from clinical trials on medicinal products for human use”. It specified that the causality should be assessed by both the investigator and the sponsor.

 “All adverse events judged by either the investigator or the sponsor as having a reasonable suspected causal relationship to an investigational medicinal product qualify as adverse reactions. The causality assessment given by the investigator should not be downgraded by the sponsor. If the sponsor disagrees with the investigator’s causality assessment, both, the opinion of the investigator and the sponsor should be provided with the report.”

For now, at least we know that the ‘adverse reaction’ and ‘drug-related adverse event’ are not the same. 'Adverse reaction' concept may have different meaning in pre-marketing clinical trials and in post-marketing studies.

In the product label for ADVATE, the 'adverse reaction' has the following definition:
"ADRs are defined as any Adverse Event that occurred within 24 hours after being infused with investigational product OR all Adverse Events assessed related or possibly related to  investigational product OR Adverse Events for which the investigator's or sponsor's opinion of causality was missing or indeterminate."
where Adverse event that occurred within 24 hours belongs to the concept of 'temporally related adverse events'. The time frame of 24 hours, 48 hours, or 72 hours,...should be determined based on the nature of the drug (for example, the half life).

In a FDA's medical review memo, the reasoning for using above ADR definition was discussed:
"...That most recent information request asked the sponsor to use the following definition of adverse reaction (ADR) for the pooled analysis of ADRs in Table 3 in the ADVERSE REACTIONS section of the PI:
Any Adverse Event that began during an infusion or <= 24 hours after the end of an infusion with the investigational product OR all Adverse Events assessed by the investigator or sponsor as related, probably related, or possibly related to investigational product OR Adverse Events for which the investigator's or sponsor's opinion of causality was missing or indeterminate.
I recommend the sponsor be asked to re-title Table 3 and to use a footnote to provide the operational definition of ADR used for this pooled analysis. OBRR commonly uses temporal association to help define ADRs in clinical trials lacking a randomized parallel placebo group, since there is no assurance in such cases that the sponsor’s or investigator’s assessments of causality of AEs is necessarily accurate. Limiting ADRs in such trials to the ADRs identified by the investigator may lead to an underestimation of the true ADR incidence, but no causality assessment method is wholly satisfactory in the absence of a gold standard. Given that many of the pooled Advate trials involved routine prophylaxis given up to 4 times weekly, the 24 hour time frame for temporal association of ADRs is considered to be more useful in helping to define possibly causally related ADRs, rather than the 72 hour time frame which OBRR has often employed for parenteral biologic products given at less frequent intervals. The sponsor submitted at FDA request the results of ADR analyses as tables using timeframes of temporal association of 24, 48, and 72 hours to help define ADRs (in addition to ADRs consisting of AEs already identified as at least possibly related according to the investigator or the sponsor)."

Reference: 




Saturday, November 10, 2012

Patient-focused Drug Development and Qualitative Methods in Clinical Trial

Almost 20 years ago, we introduced the qualitative methods in public health research in China. We organized the workshops and published the papers. We actually implemented the qualitative methods when we assessed the health care quality, KABP (Knowledge, Attitudes, Beliefs, and Practices) survey, and breast feeding research.


I have never thought that I would use any qualitative method since I am now a statistician and in the drug development field.  Last month, I attended a one-day interactive workshop “Clinical trial endpoints: methods and practice in developing measurements” with special emphasis on rare diseases. We spent majority of our time in discussing the qualitative methods (mainly the patient interview) to establish the content validity for patient oriented clinical trial endpoints (for example, the patient reported outcome (PRO)). For many orphan (rare) diseases, the characteristics of the disease may not be well defined and patient population in study may not be homogeneous. For the purpose of the clinical trials, it is challenging to identify a valid clinical endpoint to measure the efficacy. One approach to tackle this is to start with the patient. To interact with patients, the qualitative methods (for example the interview with patients) can be used to solicit the issues/items that are most concerned by the patients and hopefully we can based this information to derive a clinical endpoint for the clinical trials.

With patient-focused approach, the clinical endpoint should reflect the impact on:
  • Patient’s mortality
  • Patient’s function
  • Patient’s feeling
This will be much different from the biomarkers which may not have any direct impact on any of these (at least in the short term). It is probably true that the non-disease specific tool for health related quality of life measure may be less sensitive and less relevant comparing to any tool / instrument / scale derived with the inputs directly from patients.

One thing has become clear that the clinical trial endpoint derived with the patient-focused approach need qualification (not the formal ‘validation’). Qualification process is supposed to be not as time consuming as the formal validation.  In 2010, FDA issued its guidance on “qualification process for drug development tools”.

In the newly passed PDUFA V (prescription drug user fee act), FDA proposed patient-focused drug development and a systematic effort in PDUFA V:
  •  PDUFA V provides resources to support additional program staff to expand activities dedicated to providing review divisions with patient input
  • FDA will convene meetings with participation from review divisions, the relevant patient advocacy community, and other interested parties
  • FDA will hold four public workshops per year – a total of 20 meetings over 5 years. Each meeting will focus on a different disease area, reviewing the armamentarium for that indication, and identifying areas of unmet need.

FDA had already put this in action and organized its first meeting last Month to discuss the list of diseases to be included. The background and the plan about the patient-focused drug development program are described in the presentation by Dr Mullin.

A Statistician or Fortune Teller

The election is over. Other than President Obama, a statistician is shining. See the Yahoo article "He called it, and now Silver's a pop-culture star"  to see if Nate Silver is a statistician or fortune teller.

 

Would the simulation have any value in president election? Read the article "Flip this White House: Could random chance have made Al Gore president? What about Bob Dole?" to see what happens if the simulation is applied.