Introduction
Drug–drug interaction (DDI) is defined as a change in the clinical effect of a given drug because of the interference of another drug. Drug Interactions can occur between drugs, between drugs and food, herbs or supplements. They can be classified into three types: pharmacokinetic, pharmacodynamic and pharmaceutical. (Scripture CD, 2006)
Drug interactions present a profound and a serious problem especially with the emergence of newer agents every day which makes it harder to manage optimum prescribing and dispensing of combination therapies. It also presents an opportunity, but a challenging arena, for pharmacists to employ their knowledge of drug mechanisms and interactions for the welfare of patients.
Drug–drug interactions (DDI) can be the cause of treatment failure or side effects. The resulting adverse drug reactions (ADR) are major causes of mortality and morbidity. One of the leading causes of death in hospitalized patients is fatal ADRs. (J. Lazarou, 1998) Five to 6.5 % of hospitalizations are caused by ADRs, of these 2.5-4% are due to DDIs. (L. Guedon-Moreau, 2003). In the general population 20 to 30% of the ADRs are caused by DDIs. (Kohler GI, 2000)
It is very hard for physicians and pharmacists to remember and understand all DDIs and the situation is even worse in large specialized practices where the healthcare team is more focused on the specialty used medication with less knowledge about the medications used in other specialties and their associated interactions and precautions.
In diseases like cancer, a multidisciplinary treatment approach is adapted to meet the patients’ complex needs. The risk for DDIs, in this case, is even higher than in the general settings due to the fact of concomitant administration of multiple drugs. The literature confirms this high prevalence which leads to considerable adverse events. (Kohler GI, 2000) In fact 4% of cancer related deaths are drug related. (Buajordet I, 2001) A literature review of drug interaction in oncology settings revealed that, depending on the type of study population, the frequency of potential DDIs varied from 12% to 63%. (Riechelmann RP, 2009)
The seriousness of DDIs consequences was the driving force for the available drug interactions checking software which pharmacists and physicians rely on worldwide. In spite of the fact that most of these softwares work nicely, their integration with open-source or in-house built computerized physician order entry (CPOE) was not feasible. This made us think of building a customizable DDI checker which can be easily updated and tuned to avoid "alert fatigue" which is the main complaint of most of the clinical decision support systems users.
Using the Code
Using the application involves two simple steps: Step (1) is to fill the array "DrugList
" sequentially with the prescribed drugs, and, Step (2) which compares item combinations in the array against the reference table "Interactions". The array that will store the selected medications is defined first.
Imports System.IO
Imports System.Web.Hosting
Partial Class _Default
Inherits System.Web.UI.Page
Dim drugList As New ArrayList
The search box consumes an auto-complete function that "find-as-you-type" in the medication database. In this application, medication names are stored in a text file stored at the application root. The data can also be stored in Microsoft Excel, Microsoft Access, XML file or SQL database.
Once the medication is selected and the user clicks "add to List", the array "druglist
" will carry one more medication and the array become stored in the session "drugs
".
Protected Sub addbtn_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles addbtn.Click
If txtSearch.Text = "" Then
Exit Sub
End If
Dim spath As String = Path.Combine(HostingEnvironment.ApplicationPhysicalPath, "drugs.txt")
Dim Testdrugs() As String = File.ReadAllLines(spath, Encoding.Default)
If Testdrugs.Contains(txtSearch.Text) Then
If lblDrugCounter.Text = "" Then lblDrugCounter.Text = 0
lblDrugCounter.Text = lblDrugCounter.Text + 1
Dim myLabel As New Label
myLabel.Text = txtSearch.Text
AppPlaceHolder.Controls.Add(myLabel)
drugList.Add(txtSearch.Text)
Session("drugs") = drugList
txtSearch.Text = ""
Else
Response.Write("not in built-in medication list")
Exit Sub
End If
End Sub
After adding the prescribed medications one by one, the user interface looks like the following:
The count of medications added to the array is of value for the pharmacist to make sure all items in the prescription are added to the application. After the medication selection is complete, the user clicks the button "Check", which then calls the sub checkinteractions()
.
Protected Sub chkbtn_Click(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles chkbtn.Click
checkinteractions()
End Sub
The sub checkinteractions()
runs a dynamically created query on the table "Interactions
" which contains the documented Drug-Drug Interactions. This table contains two fields for Medication Names "A
" and "B
". The Field "Grade
" stores the severity of the interaction between "A
" and "B
" while the field "Summary
" contains the mechanism of interaction.
After running the query, there are two possibilities: If Interaction exists, then the sub "checkinteractions
" will display the color coded warning according to the severity of the interaction. If no interaction exists, a custom message can be placed.
Public Sub checkinteractions()
Dim Item1, Item2 As String
For Each a In drugList
For Each b In drugList
Item1 = a
Item2 = b
If Item1 <> Item2 Then
InteractionDs.SelectCommand = "SELECT [A], [B], [Grade], [Summary] FROM [Interactions] WHERE [A]='" + a + "' and [B]='" + b + "';"
InteractionDs.DataBind()
Dim mygrid As New GridView
mygrid.DataSource = InteractionDs
mygrid.DataBind()
Try
If mygrid.Rows.Count > 0 Then Session("ddiexist") = "true"
Dim alertlbl As New Label
alertlbl.Text = mygrid.Rows(0).Cells(0).Text.ToString + " interacts with " + mygrid.Rows(0).Cells(1).Text.ToString + " -- degree of interaction is -- " + mygrid.Rows(0).Cells(2).Text.ToString
If mygrid.Rows(0).Cells(2).Text.ToString = "Serious - Use Alternative" Then
alertlbl.BackColor = Drawing.Color.Orange
ElseIf mygrid.Rows(0).Cells(2).Text.ToString = "Contraindicated" Then
alertlbl.BackColor = Drawing.Color.Pink
ElseIf mygrid.Rows(0).Cells(2).Text.ToString = "Significant - Monitor Closely" Then
alertlbl.BackColor = Drawing.Color.Yellow
End If
alertlbl.Font.Bold = True
AppPlaceHolder.Controls.Add(New LiteralControl("<br />"))
AppPlaceHolder.Controls.Add(alertlbl)
AppPlaceHolder.Controls.Add(New LiteralControl("<br />"))
Dim comments As New Label
comments.Font.Italic = True
comments.Text = mygrid.Rows(0).Cells(3).Text.ToString
AppPlaceHolder.Controls.Add(comments)
AppPlaceHolder.Controls.Add(New LiteralControl("<hr>"))
End If
Catch ex As Exception
End Try
End If
Next
Next
If Session("ddiexist") = "" Then
Dim noddi As New Label noddi.Font.Bold = True
noddi.Text = "No Interaction Found !"
noddi.BackColor = Drawing.Color.LightGreen
AppPlaceHolder.Controls.Add(noddi)
End If
End Sub
The resulting Report of Drug-Drug interaction after submission of the prescribed medications list will look like this:
If no interaction exists, a custom message can be placed in the label "noddi
" in checkinteractions()
.
The code described below is employed to clear the medication list and reset session content of the previous medication interaction check through (clearbtn_Click
), and to maintain the application throughout the page life-cycle (Page_Load
and Page_PreInit
).
Protected Sub clearbtn_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles clearbtn.Click
Session("ddiexist") = "" drugList.Clear()
Session("drugs") = drugList
Response.Redirect("default.aspx?")
End Sub
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
Session("drugs") = drugList
End If
End Sub
Protected Sub Page_PreInit(sender As Object, e As System.EventArgs) Handles Me.PreInit
If IsPostBack Then
Try
drugList = Session("drugs")
For Each a In drugList
Dim mylabel As New Label
mylabel.Text = a & "<br/>"
PlaceHolder1.Controls.Add(mylabel)
Next
Catch ex As Exception
End Try
End If
End Sub
References
- Buajordet I, Ebbesen J,Erikssen J, et al. Fatal adverse drug events: the paradox of drug treatment. J Intern Med 2001;250:327-341.
- J. Lazarou, B. P. (1998). Incidence of adverse drug reactions in hospitalized patients: a meta-analysis of prospective studies. Journal of American Medical Association , 1200-1205.
- Kohler GI, B.-B. S. (2000). Drug-drug interactions in medical patients: effects of in-hospital. Int J Clin Pharmacol Ther , 504-513.
- L. Guedon-Moreau, D. D. (2003). Absolute contraindications in relation to potential drug interactions in outpatient prescriptions: analysis of the first five million prescriptions in 1999. European Journal of Clinical Pharmacology , 689–695.
- Riechelmann RP, Del Giglio A. Drug interactions in oncology: how common are they? Annals of Oncology 2009,20: 1907–1912
- Scripture CD, Figg WD. Drug interactions in cancer therapy. Nat Rev Cancer 2006;6:546-558.
Disclaimer
The interaction data used in this article is for demonstration purposes only. It might be inaccurate or outdated. The live application will use an accredited database from a reliable source, so please DO NOT use the data presented in this article as a reference for your clinical decision.