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. k8s使用ceph作为后端存储挂载

    一.在ceph集群上操作: 1.创建池(主要使用存储类来进行持久卷的挂载,其他的挂载方式不好使也太麻烦):ceph osd pool create k8s 64 二.在k8s上操作: 1.安装客户端( ...

  2. UVALive 6906 A - Cluster Analysis

    思路:排个序,依次选就好了. #include <bits/stdc++.h> #define PB push_back #define MP make_pair using namesp ...

  3. angularjs中directive声明scope对象的用法

    总的来说用法 分三种: >1: scope: false  --> 继承父域,实现 双向数据绑定 示例代码 可自测: <!DOCTYPE html> <html lang ...

  4. gh-ost测试

    gh-ost测试 1.不支持没有主键或者唯一索引的表 2018-08-24 09:53:33 FATAL No PRIMARY nor UNIQUE key found in table! Baili ...

  5. EasyUI:所有的图标

    EasyUI:所有的图标 所有的图标在 jquery-easyui-1.2.6/themes/icons 目录下: jquery-easyui-1.2.6/themes/icon.css .icon- ...

  6. ASP.NET MVC 4.0 中使用NPOI 2.2.0 按模板生成Excel报表

    使用 NPOI 你就可以在没有安装 Office 或者相应环境的机器上对 WORD/EXCEL 文档进行读写.NPOI是构建在POI 3.x版本之上的,它可以在没有安装Office的情况下对Word/ ...

  7. 文件操作工具类: 文件/目录的创建、删除、移动、复制、zip压缩与解压.

    FileOperationUtils.java package com.xnl.utils; import java.io.BufferedInputStream; import java.io.Bu ...

  8. SpringBoot 悲观锁 与 乐观锁

    乐观所和悲观锁策略 悲观锁:在读取数据时锁住那几行,其他对这几行的更新需要等到悲观锁结束时才能继续 . 乐观所:读取数据时不锁,更新时检查是否数据已经被更新过,如果是则取消当前更新,一般在悲观锁的等待 ...

  9. MapReduce数据筛选

    需求: 编写MapReduce程序算出高峰时间段(如9-10点)哪张表被访问的最频繁的表,以及这段时间访问这张表最多的用户,以及这个用户访问这张表的总时间开销. 测试数据: TableName(表名) ...

  10. spark学习12(Wordcount程序之spark-shell)

    在目录/home/hadoop/2016113012下有文件words.txt hello scala hello java hello python hello wujiadong 上传该文件到hd ...