Innovative UK technology that can deliver drugs deep into the brain to treat neurological diseases, from Parkinson’s to cancer, has had encouraging results in its first controlled clinical trial.

Steven Gill, professor of neurosurgery at the University of Bristol, designed the new convection enhanced delivery system to bypass the blood-brain barrier which makes it hard to target medicines inside the head. It is manufactured by Renishaw, a British precision engineering company.

The CED device uses four tubes, fitted through robot-assisted surgery, to infuse drugs in solution directly to the putamen, a structure at the base of the forebrain that plays an important role in Parkinson’s. Patients lived for many months with an entry port — that looks like a plastic plug — on the side of their head without suffering side-effects.

“This trial has shown that we can safely and repeatedly infuse drugs directly into patient’s brains over months or years,” said Prof Gill. “This is a significant breakthrough in our ability to treat neurological conditions . . . because most drugs that might work cannot cross from the blood stream into the brain due to a natural protective barrier.”

The inaugural CED trial was with 35 Parkinson’s patients at Bristol’s Southmead Hospital, who were administered an experimental drug called GDNF, which promotes the growth of brain cells. Results are reported in scientific papers in Brain and the Journal of Parkinson’s Disease.

Participants showed some clinical improvement, in particular easier movement of their limbs, compared with those who received an inactive placebo solution through the CED device. Scans also showed more regrowth of brain cells in treated patients, though the overall outcome failed to confirm that the medication had reversed the underlying condition — something that no existing treatment can do.

“Now we need to move towards a definitive clinical trial using higher doses,” Prof Gill said. Regulators in Europe and the US have agreed that a more extensive GDNF trial can go ahead, though funding still has to be arranged.

Neuroscientists who were not directly involved in the Bristol trial gave it a cautious welcome. “For a neurodegenerative condition of this complexity, I think the results are remarkably positive,” said Roger Morris, professor of molecular neurobiology at King’s College London.
They also praised the possibilities of CED. “If intra-brain perfusion can be safely achieved for long-term drug delivery inside the brain, the range of medication that can be used to combat brain diseases [stroke and cancer as well as neurodegeneration] will be massively expanded,” said Prof Morris.

Prof Gill is working with Herantis Pharma, a biotech company in Finland, on a separate Parkinson’s disease trial using the same CED delivery system to administer another experimental drug called CDNF that also promotes neural growth. It has not yet reported any results.

A third application is for a lethal childhood brain cancer called diffuse intrinsic pontine glioma, or DIPG. “This accurate targeting of the tumour has shown encouraging results in a number of children with DIPG treated on a compassionate basis,” said Sharon Kane, chief executive of the neurosurgery charity Funding Neuro. “There has been no progress in treatment for children with DIPG for almost 60 years, and we believe that CED will be the mechanism that will help to change the outcome for patients with this devastating diagnosis.”

L260的更多相关文章

  1. JavaScript进阶 - 第5章 小程序,大作用(函数)

    5-1什么是函数 函数的作用,可以写一次代码,然后反复地重用这个代码. 如:我们要完成多组数和的功能. var sum;   sum = 3+2; alert(sum);   sum=7+8 ; al ...

  2. 深入解析Flutter下一代渲染引擎Impeller

    作者 魏国梁:字节 Flutter Infra 工程师, Flutter Member,长期专注 Flutter 引擎技术 袁    欣:字节 Flutter Infra 工程师, 长期关注渲染技术发 ...

随机推荐

  1. Error:Unable to tunnel through proxy. Proxy returns "HTTP/1.1 400 Bad Request"解决方法

    出现这个错误的原因主要是因为你的本地Gradle和项目的Gradle地址不一样,要么就是没找到 所以需要更改下你的Gradle地址 如图需要将你的Gradle版本的地址改为,你本地的Gradle地址即 ...

  2. BAT 大规模Hadoop集群实践

    百度高级架构师马如悦:我的Hadoop 2.0 http://www.csdn.net/article/2011-04-28/296869 腾讯大规模Hadoop集群实践 腾讯 hadoop 基线版本 ...

  3. layui 表格图片放大

    1. 表格塞图片 ,{title: '图片', width:120, templet: function(d) { return '<div onclick="show_img(thi ...

  4. python装饰器概念与应用

    格式一:装饰器外层不传参,内层传参 user_status = False # 用户登录了就把这个改成True def login(func): # 把要执行的henan模块从这里传进来 def in ...

  5. java 静态代理和动态代理

    代理模式 一.概述 代理是一种模式,提供了对目标对象的间接访问方式,即通过代理访问目标对象.如此便于在目标实现的基础上增加额外的功能操作,前拦截,后拦截等,以满足自身的业务需求,同时代理模式便于扩展目 ...

  6. h5手机端禁止缩放问题

    最近测试html5页面,发现默认都允许用户缩放页面,或者在屏幕双击放大或缩小.即相当于这样设置 <meta name="viewport" content="wid ...

  7. python-day74--知识总体总结

    1. 课程介绍        - 数据类型        - 函数        - 面向对象三大特性:继承,封装,多态        - socket:本质传输字节:所有网络通信都基于socket  ...

  8. SpringCloud 将服务注册到Eureka Server上

    提供好服务生产者: 1.添加spring-cloud-starter-eureka依赖 <dependencyManagement> <dependencies> <de ...

  9. 绘图之EasyUI+Highcharts+Django

    前言: 在web开发过程中经常会出现图表展示数据的业务需求,如何把数据通过图表的形式,展示在页面上呢?本文将结合EasyUI.Highcharts.Django做一个简单的图表展示web应用: 一.E ...

  10. PE文件结构解析

    说明:本文件中各种文件头格式截图基本都来自看雪的<加密与解密>:本文相当<加密与解密>的阅读笔记. 1.PE文件总体结构 PE文件框架结构,就是exe文件的排版结构.也就是说我 ...