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. 2. 搭建DRF项目

    企业项目开发流程 一.需求分析 1.企业的web项目类型: 商城 门户网站[企业站和门户站] 社交网络 资讯论坛 内部系统 个人博客 内容收费站 前端的静态页面制作,外界开发的时候,是照着psd/pn ...

  2. Python操作excel的几种方式--xlrd、xlwt、openpyxl

    openpyxl xlrd xlwt   在处理excel数据时发现了xlwt的局限性–不能写入超过65535行.256列的数据(因为它只支持Excel 2003及之前的版本,在这些版本的Excel中 ...

  3. mysql find_in_set()函数的使用

    mysql 中 find_in_set() 函数语法: FIND_IN_SET(str,strList) str 要查询的字符串 strList 字段名,参数以“,”分隔,如(1,2,6,8) 查询字 ...

  4. Git创建新项目

    1. git init 2. git remote add origin 3. git pull origin --allow-unrelated-histories 4. git push orig ...

  5. Maximum sub array

    Here I post a way to solve maximum sub array problem: The problem described like this: here is an ar ...

  6. noip2014生活大爆炸版石头剪刀布

    题目描述 石头剪刀布是常见的猜拳游戏:石头胜剪刀,剪刀胜布,布胜石头.如果两个人出拳一 样,则不分胜负.在<生活大爆炸>第二季第8集中出现了一种石头剪刀布的升级版游戏. 升级版游戏在传统的 ...

  7. cogs448

    ☆   输入文件:1.in   输出文件:1.out   简单对比时间限制:1 s   内存限制:128 MB [题目描述] 在某次膜拜大会上,一些神牛被要求集体膜拜.这些神牛被奖励每人吃一些神牛果. ...

  8. Qt动态布局

    QVBoxLayout *m_pvLayout = NULL: QWidget *m_pWidgetPlay = NULL: m_pvLayout = new QVBoxLayout(this); m ...

  9. python ctrl+c

    #!/usr/bin/env pythonimport signalimport sysimport osdef signal_handler(signal, frame): print('You p ...

  10. 【用例管理】用testng的groups管理用例

    一.需求: 测试时经常有两种场景,第一种是冒烟测试的小部分用例:一类是全部用例. 二.针对第一种运行部分的用例,可以用groups来管理 package com.testcases; import o ...