Fake, Low Quality Drugs Come at High Cost
About one in eight essential medicines in low- and middle-income countries may be fake or contain dangerous mixes of ingredients that put patients' lives at risk, a research review suggests.
Researchers examined data from more 350 previous studies that tested more 400,000 drug samples in low- and middle-income countries. Overall, roughly 14 percent of medicines were counterfeit, expired or otherwise low quality and unlikely to be as safe or effective as patients might expect.
"Low-quality medicines can have no or little active pharmaceutical ingredient and can prolong illness, lead to treatment failure and contribute to drug resistance," said lead study author Sachiko Ozawa of the University of North Carolina at Chapel Hill.
"Or it may have too much active ingredient and cause a drug overdose," Ozawa said by email. "If it is contaminated or has other active ingredients, then the medication could cause poisoning, adverse drug interactions or avertable deaths."
Much of the research to date on counterfeit or otherwise unsafe medicines has focused on Africa, and about half of the studies in the current analysis were done there.
Almost one in five medications tested in Africa were fake or otherwise potentially unsafe, researchers report in JAMA Network Open.
Another third of the studies were done in Asia, where about 14 percent of medicines tested were found to be counterfeit or otherwise unsafe.
Antibiotics and antimalarials were the most tested drugs in the analysis. Overall, about 19 percent of antimalarials and 12 percent of antibiotics were falsified or otherwise unsafe.
While fake or improperly made medicines undoubtedly harm patients, the current analysis couldn't tell how many people suffered serious side effects or died as a result of falsified drugs.
Researchers did try to assess the economic impact of counterfeit or improperly made medicines and found the annual cost might run anywhere from $10 billion to $200 billion.
While the study didn't examine high-income countries, drug quality concerns are by no means limited to less affluent nations, Ozawa said.
"Even in high-income countries, purchasing cheaper medicines from illegitimate sources online could result in obtaining substandard or falsified medicines," Ozawa said. "Verify the source before you buy medications, and make policymakers aware of the problem so they can work to improve the global supply chain of medicines."
The study wasn't a controlled experiment designed to prove whether or how counterfeit or poorly made medicines directly harm patients, however. And economic impact was difficult to assess from smaller studies that often didn't include detailed methodology for calculating the financial toll.
The report "provides important validation of what is largely already known," Tim Mackey of the Global Health Policy Institute in La Jolla, California, writes in an accompanying editorial.
"It is important to note that although the study is comprehensive, its narrow scope means it only provides a snapshot of the entire problem, as it is limited to studies conducted in low- and middle-income countries and to those
medicines classified as essential by the World Health Organization."

L131的更多相关文章

  1. Silverlight日记:字符串装换成Path对象

    一,需要动态绑定Path <UserControl x:Class="Secom.Emx2.SL.Common.Controls.EleSafe.Ele.Line" xmln ...

  2. Luogu5285 [十二省联考2019] 骗分过样例

    题目分析: 观察前3个点,$361=19*19$,所以可以发现实际上就是快速幂,然后模数猜测是$998244353$,因为功能编号里面有这个数字,用费马小定理处理一下. $pts:12$ 观察第4个点 ...

  3. C语言程序设计(十三) 文件操作

    第十三章 文件操作 文本文件:将数值型数据的每一位数字作为一个字符以其ASCII码的形式存储(每一位数字都单独占用一个字节的存储空间) 二进制文件:数据值是以二进制形式存储的 文本文件可以方便地被其他 ...

  4. vue2.x核心源码深入浅出,我还是去看源码了

    平常的工作就是以vue2.x进行开发,因为我是个实用主义者,以前我就一直觉得,你既然选择了这个框架开发你首先就要先弄懂这玩意怎么用,也就是先熟悉vue语法和各种api,而不是去纠结实现它的原理是什么. ...

随机推荐

  1. jmeter+ant+jenkins接口自动环境搭建

    ant 下载地址:http://archive.apache.org/dist/ant/binaries/ 下载:apache-ant-1.9.7-bin.zip 解压到系统盘下:D:\apache- ...

  2. kubernetes1.9 手动安装

    一.创建TLS证书和秘钥: 1.安装 CFSSL: wget https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 chmod +x cfssl_linux-amd ...

  3. cdoj1338郭大侠与英雄学院

    地址:http://acm.uestc.edu.cn/#/problem/show/1338 思路: 郭大侠与英雄学院 Time Limit: 6000/2000MS (Java/Others)    ...

  4. phoenix部署手册-基于hbase

    背景描述: phoenix基于hbase的SQL层,映射hbase的表,也可以映射视图(VIEW) 部署安装比较简单 映射表和视图的区别: 映射表: 在Phoenix建表错误不易更改: 删除会连同hb ...

  5. Oracle 伪列

    ROWNUM ROWNUM:表示行号,实际上此是一个列,但是这个列是一个伪列,此列可以在每张表中出现. 范例:在查询雇员表上,加入 ROWNUM SELECT ROWNUM,empno,ename,j ...

  6. cocoa中获得root权限的几种方法

    目前我所知道的,在cocoa中获得root权限的方法有3种: 1. 通过AuthorizationCopyRights函数 2. 在UI上添加一个锁的样子的控件,然后通过开关这个锁来获取root权限 ...

  7. Jquery简单的选项卡实现

    概述 原来对jQuery用的不是很多,主要就是表单验证这些部分,最近想要更深入的学习jQuery和JavaScript编码,就找来了一些视频进行学习,然后就做了这个简单的选项卡示例.视频学习地址见最后 ...

  8. Java中遍历map的四种方法 - 转载

    在Java中如何遍历Map对象 How to Iterate Over a Map in Java 在java中遍历Map有不少的方法.我们看一下最常用的方法及其优缺点. 既然java中的所有map都 ...

  9. Python基础笔记系列五:元组

    本系列教程供个人学习笔记使用,如果您要浏览可能需要其它编程语言基础(如C语言),why?因为我写得烂啊,只有我自己看得懂!! 元组 1)元组的结构和访问.使用方法和列表基本一致,区别主要有两点:1.使 ...

  10. JAVA实现计算三角形等平面图形的夹角问题

    问题重现 现在一平面上有三点,分别是x(x1,x2),y(y1,y2),z(z1,z2),图形大致如下 现要求用java代码求出∠YxZ的度数. 问题分析及数学模型 1.要求两直线的夹角,就想到数学中 ...