Literature DB >> 25717411

Efficiently mining Adverse Event Reporting System for multiple drug interactions.

Yang Xiang1, Aaron Albin2, Kaiyu Ren2, Pengyue Zhang3, Jonathan P Etter4, Simon Lin5, Lang Li3.   

Abstract

Efficiently mining multiple drug interactions and reactions from Adverse Event Reporting System (AERS) is a challenging problem which has not been sufficiently addressed by existing methods. To tackle this challenge, we propose a FCI-fliter approach which leverages the efforts of UMLS mapping, frequent closed itemset mining, and uninformative association identification and removal. By applying our method on AERS, we identified a large number of multiple drug interactions with reactions. By statistical analysis, we found most of the identified associations have very small p-values which suggest that they are statistically significant. Further analysis on the results shows that many multiple drug interactions and reactions are clinically interesting, and suggests that our method may be further improved with the combination of external knowledge.

Entities:  

Year:  2014        PMID: 25717411      PMCID: PMC4333704     

Source DB:  PubMed          Journal:  AMIA Jt Summits Transl Sci Proc


Introduction

It is well understood that adverse drug reactions may pose serious health concerns on patients. The situation becomes more complicated when two or more drugs are taken together. Interactions between multiple drugs may yield additional reactions than taking them separately. To monitor the adverse drug reactions, the US Food and Drug Administration built an Adverse Event Reporting System (AERS), a post-marketing drug safety surveillance database which contains adverse reports from various sources. However, AERS is essentially a large collection of drug reaction reports. A report involving multiple drugs and reactions does not necessarily indicate a causal relationship between them. In fact, records in AERS come from multiple sources coded as “Foreign”, “Study”, “Literature”, “Consumer”, “Health Professional”, etc. It is not clear whether all sources produce similar accurate reports to AERS. Thus, mining such a large data for causative adverse drug reactions poses a major challenge in drug safety studies. The existing work on AERS data mining and analysis mainly focuses on using statistic approaches. Some studies identify the reactions caused by one drug, or the drug-drug interactions between two drugs, using statistical approaches such as Bayesian methods [1] [2] and propensity score matching [3]. Some studies focus on the analysis of a few specific adverse reactions [4] or a few drug-drug interaction pairs [5]. In [2], the authors also extend the self-controlled case series (SCCS) to analyze multiple drug interactions. However, these methods did not answer the question of how to efficiently discover multiple drug interactions, i.e., drug-drug interactions that involve two or more drugs. There are many reports in AERS involving more than 2 drugs. To tackle this challenge, Harpaz et al. [6] used association rules mining technique to find frequent patterns. A frequent pattern (a.k.a., frequent itemset) in AERS is a set of drugs and reactions that appear in at least k reports, where k is an adjustable parameter that is known as minimum support. The lower k is, the more patterns will be found and thus more computational time is needed. However, using frequent pattern mining has two major limitations. First, it is computationally very costly. If a pattern is frequent, then all its sub patterns are frequent and should be outputted under the same support level k. A pattern with length x will have 2 sub patterns (including the empty pattern and itself). This implies that it is computationally intractable to find a lengthy pattern because the number of sub patterns is exponential to its length. The counter measurement is to increase k or limit the output pattern size. But by doing this, we will miss a large volume of lengthy patterns and low support patterns. In [6], authors use 50, a quite high support level for mining AERS, and obtained only 2603 itemsets. Second, the association rules suggested by frequent patterns are not sufficient to support the causative relationships between drug interactions and reactions. For example, if (drugA, drugB, reactionA, reactionB) is a frequent itemset, we cannot conclude that it is supportive evidence that the interaction of drugA and drugB leads to the reactionA and reactionB. It may be caused by the facts that (1) drugA causes reactionA; drugB causes reactionB, drugA and drugB are often taken together. Given the above challenging background, in this work we propose a very efficient mining method based on UMLS mapping, Frequent Closed Itemset Mining and filtering (FCI-filter) for mining multiple drug interactions from AERS. Our method efficiently finds a large number of multiple drug interactions and effectively prunes out uninformative patterns. It is important to point out that in this work we do not target on finding causative relationships between drug interactions and reactions, but on finding informative associations by eliminating associations that are not sufficient to support causative relationships.

Methods

UMLS Mapping

A drug or a reaction may have different names in the AERS, for example: Alpha Lipoic Acid is also known as ALA or Lipoic Acid. In many cases a drug name in AERS not only includes the drug but also its dosage. Therefore, it is not accurate to build a transactional database based on the drug or reaction names in AERS. To tackle this issue, we map each drug or reaction name to a UMLS concept, by LDPMap [7]. The UMLS is a very comprehensive collection of medical terms from various sources, such as HUGO, SNOMED CT, RxNorm, ICD9, MedDRA, etc. The RxNorm contains a large collection of drug names and has been successfully used in [6] for mapping drug names. The MedDRA was used for coding reactions in AERS. In the UMLS, a medical term may have various synonyms and may appear in more than one source, but it has only one unique identifier known as a CUI. In [7], we designed a layered dynamic programming mapping method (LDPMap) to effectively find a best matching UMLS CUI for any input of medical term. We have known that LDPMap is much more accurate in mapping medical terms to the UMLS than the UMLS Metathesaurus Browser [8] and MetaMap [9]. Here, we utilize LDPMap to map each drug and reaction to a UMLS CUI. In order to increase the accuracy, dosage related characters such as “oz”, “ml” and “mg” in drug names were removed before applying LDPMap. After applying LDPMap on the AERS data of 2012q3, we obtained 10297 unique drugs and 6838 unique reactions, and built a transactional database AERS_tdb containing 134508 records.

Frequent Closed Itemset Mining

In data mining, a closed itemset is defined as an itemset which does not have a superset that has the same support as this itemset, and a frequent closed itemset is an itemset that is both closed and frequent. By using the concept of closed itemset, we will be able to eliminate the problem of enumerating exponential numbers of subsets. For example, if drugA, drugB, reactionA, reactionB is a frequent closed itemset, then we do not need to output any of its subsets (such as drugA, reactionA) unless such a subset appears in a record that does not contain all items of drugA, drugB, reactionA, reactionB. Thus, we can see that by using the concept of frequent closed itemset, it is possible to significantly reduce the computational cost and eliminate the output of redundant information. In this study, we use MAFIA [10], an efficient frequent closed itemset mining tool, to mine frequent closed itemset in AERS_tdb, with support level set to be 0.00005, which implies that any closed itemset appearing in 6.7254 or more records in AERS_tdb will be outputted. As a result, we obtained 4811379 frequent closed itemsets. Since we are interested in drug reaction relationships, we removed any itemset that contains only drugs or only reactions, and finally we got 1903630 itemsets containing both drugs and reactions. This is several orders of magnitude larger than the 2603 items obtained in [6]. In addition, we observed that the maximum number of drugs contained in one itemset is 20. This suggests that these 20 drugs are often taken together and with common reactions.

Uninformative Association Identification and Removal

As mentioned above, the association rules suggested by frequent closed itemsets are not equivalent to the causative relationships between drug interactions and reactions. An itemset is not sufficient to support a causative relationship if its items and supporting transactions (i.e., transactions containing these items) can be obtained from the interaction of other itemsets and their supporting transactions. In this case, this itemset is considered uninformative. Formally, Let I denote an itemset, and T denote the complete set of transactions containing this itemset. We have the following rule: Rule 1: I is not sufficient to support causative relationships if there exist a list of itemset-transaction pairs I, I, … I, I = I ∪ I… ∪ I and T = T ∩ T… ∩ T such that none of T, T…,T is equal to T. In other words, if we view an itemset and its supporting transactions as a block, the above interaction can be described as a “block horizontal union” [11]. Thus, an itemset is not sufficient to support causative relationships if its block can be obtained by a block horizontal union on other blocks with different transaction sets. Here is an example: drugA, reactionA, appears in and only in records 1, 3, 5 drugB, reactionB, appears in and only in records 1, 2, 5 drugA, drugB, reactionA, reactionB appears in and only in records 1, 5. Then drugA, drugB, reactionA, reactionB is not sufficient to support a causative relationship such that the interaction of drugA and drugB causes reactionA and reactionB, because this relationship is a logical result of taking both drugs together. However, if in the above, drugA, reactionA appears in and only in records 1, 5, then we cannot judge drugA, drugB, reactionA, reactionB as “not sufficient to support a causative relationship”. In the following, we will use the above rule to eliminate frequent closed itemsets that are not sufficient to establish a causative relationship. Interestingly, we find that block interaction is not necessary for frequent closed itemsets and rule 1 can be simplified as: Rule 2: A frequent closed itemset I is not sufficient to support causative relationships if there exist a list of frequent closed itemsets I, I, … I where I = I ∪ I ∪ I. This is because for frequent closed itemsets, if I = I ∪ I ∪ I, we can conclude that for T = T ∩ T… ∩ T, none of T, T…, T is equal to T. Othewise, if one of the transaction set, say T, is equal to T, then it is a contradiction to the assumption that I is a closed itemset, because in this case I ∪ I would be a superset of I with the same support as I Next we will design an efficient filtering algorithm based on Rule 2. For an itemset I with p drugs, if I = I ∪ I ∪ I, we can observe that for any I (1≤ k ≤n), it must not contain more than p drugs. Thus, the filtering algorithm does not need to consider all itemsets in order to decide whether an itemset needs to be filtered out. We organize itemsets into groups by the number of drugs they contains. Let IS denote the itemset with k drugs, our filtering algorithm can be summarized by the following pseudo code: By applying FCI-Filter to the 20 frequent closed itemsets mined from AERS_tdb, we filtered out 654484 frequent closed itemsets and kept 1249146 frequent closed itemsets as the candidate associate rules.

Statistical validation

We use the following statistical method to validate the filtered itemsets. Assume the counts for taking drug(s) and have reaction(s) follows a Poisson distribution. For any drug(s) and reaction(s), we will have the following frequency: Total cases: N Taking drug(s): a Have reaction(s): b If the drug(s) will not affect the rate of having reaction(s), the expected counts of taking drug(s) and having reaction(s) would be is the portion of people taking drug. The P-value is based on the observed counts of taking drug(s) and having reaction(s) denoted by X and its expectation μ, which is P(X > μ), X~Pois(μ)

Results

By applying UMLS mapping and Frequent Closed Itemset Mining, we obtained a large number of itemsets of drug interactions and reactions (Table 1). After applying algorithm FCI-Filter, we removed a significant amount of itemsets that are insufficient to support causative relationships (Table 1).
Table 1.

Summary of results of Frequent closed mining and frequent closed itemset filtering on AERS_tdb.

Number of drugsItemsets before filteringItemsets after filtering
1124694848033
25430371320
399755144
41123833
5123114
626712
71559
81003
9833
10572
11421
12431
13570
14960
151391
161590
171351
18702
19170
2010
We subjected the itemsets (i.e., drug interactions and reactions) after filtering in Table 1 to statistical validation, and found that most itemsets have very significant low p-values (Figure 1). In addition, for drug counts greater than 10, p-value histogram (Figure 2) is similar to Figure 1, which further confirms the effectiveness of our drug interaction mining approach.
Figure 1.

P-value histogram for all itemsets after filtering

Figure 2.

P-value histogram for drug counts greater than 10

Discussions

A clinical evaluation of the data mining results reveals some interesting findings as listed in Table 2.
Table 2.

Interesting drug drug interactions and reactions.

CaseDrugsAdverse Event
1ARIPIPRAZOLE|CITALOPRAM HYDROBROMIDE|MIRTAZAPINECARDIAC FAILURE CONGESTIVE|CONGESTIVE CARDIOMYOPATHY
2DULOXETINE HYDROCHLORID E|MIRTAZAPINE|RISPERIDONELIVER FUNCTION TEST ABNORMAL
3ASPIRIN|BISOPROLOL FUMARATE|GLYBURIDE|MIGLITOL|ONON|PLAVIXHYPOGLYCAEMIA
4AMARYL|SITAGLIPTIN PHOSPHATEHYPOGLYCAEMIA
5BROMOCRIPTINE MESYLATE|CLARITHROMYCIN|KETOCONAZOLEHYPOTENSION
For instance, Aripiprazole, Citalopram hydrobromide and Mirtazapine, the three antidepressants sometimes used in combination therapies, were found to be in association with adverse cardiovascular events (Case 1 of Table 2). This result is highly interesting, since the potential cardiovascular side effects of antidepressants and antipsychotics have long been under debate [12] [13]. Recently in 2011, the US Food and Drug Administration (FDA) announced that “Citalopram causes dose-dependent QT interval prolongation. Citalopram should no longer be prescribed at doses greater than 40 mg per day.” Further clinical study of Aripiprazole, Citalopram hydrobromide and Mirtazapine is required to explore their association with adverse cardiovascular events. In addition to the above findings, we also observed interesting interactions involving a good number of drugs. For example, the following interaction contains 7 drugs and many reactions: Drugs: AMINOPYRIDINE|DANTRIUM|GILENYA|LEVO CARNIL|PIROXICAM|TROSPIUM CHLORIDE|VESICARE| Reactions: ALANINE AMINOTRANSFERASE INCREASED | ASPARTATE   AMINOTRANSFERASE INCREASED  |  BLOOD  CREATININE INCREASED  |BLOOD  GLUCOSE INCREASED|BLOOD   LACTATE DEHYDROGENASE INCREASED|BLOOD UREA INCREASED|BLOOD URIC ACID DECREASED||HAEMOGLOBIN   DECREASED|…(18 other reactions) The actions of this combination of drugs along with the reported biochemical effects is interesting. Many of these drugs act on ion channels or receptors, and the diverse array of biochemical effects that they result in is overwhelming. They result in increased activities of alanine aminotransferase, aspartate aminotransferase and blood lactate dehydrogenase. They also result in increased concentrations of blood creatinine, glucose and urea, as well as decreased concentrations in hemoglobin and blood uric acid. Many of these outcomes can be partly accredited to abnormal kidney or liver function, but they along with the other associated symptoms make analyzing their overall effects quite complex. However, this type of data analysis can provide valuable pieces of information that can act as a starting point in order to investigate why this combination of drugs has the resulting effects.

Future work

We have demonstrated in the above that FCI-filter is very effective in identifying important multiple drug interactions and reactions. However, the clinical evaluation also suggests some future improvements of our data mining strategy. An integration of clinical knowledge outside of the AERS database can be helpful (Case 3, 4, and 5 of Table 2). For instance, in Case 5 of Table 2, the hypotension side effect of Bromocriptine (single drug) is not statistically revealed from the AERS data set, although it is well known clinically to cause potential hypotension. As such, external knowledge can make the filtering of the Frequent Closed Itemset Mining more effective.
  8 in total

1.  Effective mapping of biomedical text to the UMLS Metathesaurus: the MetaMap program.

Authors:  A R Aronson
Journal:  Proc AMIA Symp       Date:  2001

2.  Disproportionality analysis using empirical Bayes data mining: a tool for the evaluation of drug interactions in the post-marketing setting.

Authors:  June S Almenoff; William DuMouchel; L Allen Kindman; Xionghu Yang; David Fram
Journal:  Pharmacoepidemiol Drug Saf       Date:  2003-09       Impact factor: 2.890

3.  Data-driven prediction of drug effects and interactions.

Authors:  Nicholas P Tatonetti; Patrick P Ye; Roxana Daneshjou; Russ B Altman
Journal:  Sci Transl Med       Date:  2012-03-14       Impact factor: 17.956

4.  Combing signals from spontaneous reports and electronic health records for detection of adverse drug reactions.

Authors:  Rave Harpaz; Santiago Vilar; William Dumouchel; Hojjat Salmasian; Krystl Haerian; Nigam H Shah; Herbert S Chase; Carol Friedman
Journal:  J Am Med Inform Assoc       Date:  2012-10-31       Impact factor: 4.497

Review 5.  Psychotropic drugs and the ECG: focus on the QTc interval.

Authors:  Paul J Goodnick; Jason Jerry; Francisco Parra
Journal:  Expert Opin Pharmacother       Date:  2002-05       Impact factor: 3.889

6.  Mining multi-item drug adverse effect associations in spontaneous reporting systems.

Authors:  Rave Harpaz; Herbert S Chase; Carol Friedman
Journal:  BMC Bioinformatics       Date:  2010-10-28       Impact factor: 3.169

7.  Association of antidepressant and atypical antipsychotic use with cardiovascular events and mortality in a veteran population.

Authors:  Tushar Acharya; Sabeena Acharya; Steven Tringali; Jian Huang
Journal:  Pharmacotherapy       Date:  2013-06-17       Impact factor: 4.705

8.  Effectively processing medical term queries on the UMLS Metathesaurus by layered dynamic programming.

Authors:  Kaiyu Ren; Albert M Lai; Aveek Mukhopadhyay; Raghu Machiraju; Kun Huang; Yang Xiang
Journal:  BMC Med Genomics       Date:  2014-05-08       Impact factor: 3.063

  8 in total
  5 in total

1.  The potential of translational bioinformatics approaches for pharmacology research.

Authors:  Lang Li
Journal:  Br J Clin Pharmacol       Date:  2015-06-01       Impact factor: 4.335

2.  Mixture drug-count response model for the high-dimensional drug combinatory effect on myopathy.

Authors:  Xueying Wang; Pengyue Zhang; Chien-Wei Chiang; Hengyi Wu; Li Shen; Xia Ning; Donglin Zeng; Lei Wang; Sara K Quinney; Weixing Feng; Lang Li
Journal:  Stat Med       Date:  2017-11-23       Impact factor: 2.373

3.  Prevalence of potentially harmful multidrug interactions on medication lists of elderly ambulatory patients.

Authors:  Tara V Anand; Brendan K Wallace; Herbert S Chase
Journal:  BMC Geriatr       Date:  2021-11-19       Impact factor: 3.921

4.  A Mixture Dose-Response Model for Identifying High-Dimensional Drug Interaction Effects on Myopathy Using Electronic Medical Record Databases.

Authors:  P Zhang; L Du; L Wang; M Liu; L Cheng; C-W Chiang; H-Y Wu; S K Quinney; L Shen; L Li
Journal:  CPT Pharmacometrics Syst Pharmacol       Date:  2015-07-06

Review 5.  Translational Biomedical Informatics and Pharmacometrics Approaches in the Drug Interactions Research.

Authors:  Pengyue Zhang; Heng-Yi Wu; Chien-Wei Chiang; Lei Wang; Samar Binkheder; Xueying Wang; Donglin Zeng; Sara K Quinney; Lang Li
Journal:  CPT Pharmacometrics Syst Pharmacol       Date:  2018-01-09
  5 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.