L260
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的更多相关文章
- JavaScript进阶 - 第5章 小程序,大作用(函数)
5-1什么是函数 函数的作用,可以写一次代码,然后反复地重用这个代码. 如:我们要完成多组数和的功能. var sum; sum = 3+2; alert(sum); sum=7+8 ; al ...
- 深入解析Flutter下一代渲染引擎Impeller
作者 魏国梁:字节 Flutter Infra 工程师, Flutter Member,长期专注 Flutter 引擎技术 袁 欣:字节 Flutter Infra 工程师, 长期关注渲染技术发 ...
随机推荐
- Robot Movement(机器人移动)
中文标题[机器人移动] 这个题目是 Kayak 发布的代码挑战题目. 我认为题目本身描述的不是十分清楚,方法需要返回结果,但是结果没有说明是机器人最后的坐标位置,还是最后的坐标位置距离原点的距离.同时 ...
- Subordinates CodeForces - 737C (树,构造)
大意: 求构造一棵树, 每个节点回答它的祖先个数, 求最少打错次数. 挺简单的一个构造, 祖先个数等价于节点深度, 所以只需要确定一个最大深度然后贪心即可. 需要特判一下根的深度, 再特判一下只有一个 ...
- 对偶图 并查集 BZOJ4423
题目链接 题目因为要根据上一次的输出结果来判断这次的输入,也就是要求我们强制在线,不能够把输入全部储存后处理 如果不要求强制在线,我们可以先把所以输入储存起来,从最后开始处理,把删边改成加边,如果在加 ...
- 6月17 练习ThinkPHP的增删改查
利用ThinkPHP连接数据库的增删改查的例题:用到的数据库表名Info表,Nation表 数据显示页面:MainController.class.php中的ShowInfo方法 //例题 //显示所 ...
- React文档(四)渲染元素
元素是React应用的最小单位. 一个React元素描述了你在屏幕上所看到的东西: const element = <h1>Hello, world</h1>; 和浏览器页面中 ...
- 关于export和export default的区别
ES6的模块化中,export与export default都可以用于导出常量.函数.文件.模块等,我们可以通过在其它文件或模块中import(常量.函数.文件.模块)的方式导入,但在一个文件或模块中 ...
- 78. Subsets C++回溯法
本题还是基本的回溯法.就是回溯函数的参数选择上要花点心思! class Solution { public: void backTrack(vector<int> ans, vector& ...
- Connection parameters are correct , SSL not enabled
这个仅仅是个消息提示,告诉你SSL not enabled.无须理会,直接点击ok
- 【LeetCode】矩阵操作
1. 矩阵旋转 将 n × n 矩阵顺时针旋转 90°. 我的思路是 “ 从外到内一层一层旋转 ”. 一个 n × n 矩阵有 (n + 1) / 2 层,每层有 4 部分,将这 4 部分旋转. 顺时 ...
- Javascript 将 HTML 页面生成 PDF 并下载
最近碰到个需求,需要把当前页面生成 pdf,并下载.弄了几天,自己整理整理,记录下来,我觉得应该会有人需要 :) html2canvas 简介 我们可以直接在浏览器端使用html2canvas,对整个 ...