Difference between revisions of "Team:NJU-China/Practices"

 
(4 intermediate revisions by the same user not shown)
Line 138: Line 138:
 
</style>  
 
</style>  
  
<script type="text/javascript">
 
DOMhelp={
 
debugWindowId:'DOMhelpdebug',
 
init:function(){
 
if(!document.getElementById || !document.createTextNode){return;}
 
},
 
lastSibling:function(node){
 
var tempObj=node.parentNode.lastChild;
 
while(tempObj.nodeType!=1 && tempObj.previousSibling!=null){
 
tempObj=tempObj.previousSibling;
 
}
 
return (tempObj.nodeType==1)?tempObj:false;
 
},
 
firstSibling:function(node){
 
var tempObj=node.parentNode.firstChild;
 
while(tempObj.nodeType!=1 && tempObj.nextSibling!=null){
 
tempObj=tempObj.nextSibling;
 
}
 
return (tempObj.nodeType==1)?tempObj:false;
 
},
 
getText:function(node){
 
if(!node.hasChildNodes()){return false;}
 
var reg=/^\s+$/;
 
var tempObj=node.firstChild;
 
while(tempObj.nodeType!=3 && tempObj.nextSibling!=null || reg.test(tempObj.nodeValue)){
 
tempObj=tempObj.nextSibling;
 
}
 
return tempObj.nodeType==3?tempObj.nodeValue:false;
 
},
 
setText:function(node,txt){
 
if(!node.hasChildNodes()){return false;}
 
var reg=/^\s+$/;
 
var tempObj=node.firstChild;
 
while(tempObj.nodeType!=3 && tempObj.nextSibling!=null || reg.test(tempObj.nodeValue)){
 
tempObj=tempObj.nextSibling;
 
}
 
if(tempObj.nodeType==3){tempObj.nodeValue=txt}else{return false;}
 
},
 
createLink:function(to,txt){
 
var tempObj=document.createElement('a');
 
tempObj.appendChild(document.createTextNode(txt));
 
tempObj.setAttribute('href',to);
 
return tempObj;
 
},
 
createTextElm:function(elm,txt){
 
var tempObj=document.createElement(elm);
 
tempObj.appendChild(document.createTextNode(txt));
 
return tempObj;
 
},
 
closestSibling:function(node,direction){
 
var tempObj;
 
if(direction==-1 && node.previousSibling!=null){
 
tempObj=node.previousSibling;
 
while(tempObj.nodeType!=1 && tempObj.previousSibling!=null){
 
tempObj=tempObj.previousSibling;
 
}
 
}else if(direction==1 && node.nextSibling!=null){
 
tempObj=node.nextSibling;
 
while(tempObj.nodeType!=1 && tempObj.nextSibling!=null){
 
tempObj=tempObj.nextSibling;
 
}
 
}
 
return tempObj.nodeType==1?tempObj:false;
 
},
 
initDebug:function(){
 
if(DOMhelp.debug){DOMhelp.stopDebug();}
 
DOMhelp.debug=document.createElement('div');
 
DOMhelp.debug.setAttribute('id',DOMhelp.debugWindowId);
 
document.body.insertBefore(DOMhelp.debug,document.body.firstChild);
 
},
 
setDebug:function(bug){
 
if(!DOMhelp.debug){DOMhelp.initDebug();}
 
DOMhelp.debug.innerHTML+=bug+'\n';
 
},
 
stopDebug:function(){
 
if(DOMhelp.debug){
 
DOMhelp.debug.parentNode.removeChild(DOMhelp.debug);
 
DOMhelp.debug=null;
 
}
 
},
 
getKey:function(e){
 
if(window.event){
 
      var key = window.event.keyCode;
 
    } else if(e){
 
      var key=e.keyCode;
 
    }
 
return key;
 
},
 
/* helper methods */
 
getTarget:function(e){
 
var target = window.event ? window.event.srcElement : e ? e.target : null;
 
if (!target){return false;}
 
while(target.nodeType!=1 && target.nodeName.toLowerCase()!='body'){
 
target=target.parentNode;
 
}
 
return target;
 
},
 
stopBubble:function(e){
 
if(window.event && window.event.cancelBubble){
 
window.event.cancelBubble = true;
 
}
 
if (e && e.stopPropagation){
 
e.stopPropagation();
 
}
 
},
 
stopDefault:function(e){
 
if(window.event && window.event.returnValue){
 
window.event.returnValue = false;
 
}
 
if (e && e.preventDefault){
 
e.preventDefault();
 
}
 
},
 
cancelClick:function(e){
 
if (window.event){
 
window.event.cancelBubble = true;
 
window.event.returnValue = false;
 
}
 
if (e && e.stopPropagation && e.preventDefault){
 
e.stopPropagation();
 
e.preventDefault();
 
}
 
},
 
addEvent: function(elm, evType, fn, useCapture){
 
if (elm.addEventListener){
 
elm.addEventListener(evType, fn, useCapture);
 
return true;
 
} else if (elm.attachEvent) {
 
var r = elm.attachEvent('on' + evType, fn);
 
return r;
 
} else {
 
elm['on' + evType] = fn;
 
}
 
},
 
cssjs:function(a,o,c1,c2){
 
switch (a){
 
case 'swap':
 
o.className=!DOMhelp.cssjs('check',o,c1)?o.className.replace(c2,c1):o.className.replace(c1,c2);
 
break;
 
case 'add':
 
if(!DOMhelp.cssjs('check',o,c1)){o.className+=o.className?' '+c1:c1;}
 
break;
 
case 'remove':
 
var rep=o.className.match(' '+c1)?' '+c1:c1;
 
o.className=o.className.replace(rep,'');
 
break;
 
case 'check':
 
var found=false;
 
var temparray=o.className.split(' ');
 
for(var i=0;i<temparray.length;i++){
 
if(temparray[i]==c1){found=true;}
 
}
 
return found;
 
break;
 
}
 
},
 
    safariClickFix:function(){
 
      return false;
 
    }
 
}
 
DOMhelp.addEvent(window, 'load', DOMhelp.init, false);
 
</script>
 
<script type="text/javascript">
 
<!--
 
sn={
 
    dynamicClass:'dyn',
 
    showClass:'show',
 
    parentClass:'parent',
 
    openClass:'open',
 
    navID:'nav',
 
    init:function(){
 
        var triggerLink;
 
        if(!document.getElementById || !document.createTextNode){return;}
 
        var nav=document.getElementById(sn.navID);
 
        if(!nav){return;}
 
        DOMhelp.cssjs('add',nav,sn.dynamicClass);       
 
        var nested=nav.getElementsByTagName('ul');
 
        for(var i=0;i<nested.length;i++){
 
            triggerLink=nested[i].parentNode.getElementsByTagName('a')[0];
 
            DOMhelp.cssjs('add',triggerLink.parentNode,sn.parentClass);       
 
            DOMhelp.addEvent(triggerLink,'click',sn.changeSection,false);
 
            triggerLink.onclick=DOMhelp.safariClickFix;
 
            if(nested[i].parentNode.getElementsByTagName('strong').length>0){
 
                DOMhelp.cssjs('add',triggerLink.parentNode,sn.openClass);       
 
                DOMhelp.cssjs('add',nested[i],sn.showClass);
 
            }
 
        }
 
    },
 
    changeSection:function(e){
 
        var t=DOMhelp.getTarget(e);
 
        var firstList=t.parentNode.getElementsByTagName('ul')[0];
 
        if(DOMhelp.cssjs('check',firstList,sn.showClass)){
 
            DOMhelp.cssjs('remove',firstList,sn.showClass)
 
            DOMhelp.cssjs('swap',t.parentNode,sn.openClass,sn.parentClass);
 
        } else {
 
            DOMhelp.cssjs('add',firstList,sn.showClass)
 
            DOMhelp.cssjs('swap',t.parentNode,sn.openClass,sn.parentClass);
 
        }
 
        DOMhelp.cancelClick(e);
 
    }
 
}
 
DOMhelp.addEvent(window,'load',sn.init,false);
 
-->
 
</script>
 
 
</head>
 
</head>
  
 
<body class="index" data-view="index" style="">
 
<body class="index" data-view="index" style="">
 
<div class="content">
 
<div class="content">
<nav>
+
<nav style="height:80px">
<ul>
+
<ul style="margin-top:10px">
 
<li><a class="button" href="#detail" style="font-weight:bold;font-family:Microsoft YaHei">content</a></li>
 
<li><a class="button" href="#detail" style="font-weight:bold;font-family:Microsoft YaHei">content</a></li>
 
</ul>
 
</ul>
Line 353: Line 149:
 
<div id='menu-toggle'>
 
<div id='menu-toggle'>
 
<div class='menu-icon'><img src="menu-fe5f9c80.svg" /></div>
 
<div class='menu-icon'><img src="menu-fe5f9c80.svg" /></div>
</div>
 
 
<div id='menu-overlay'>
 
<div class='menu-content'>
 
<ul>
 
<li><a href="NJU-China-aknow.html" style="font-weight:bold;font-family:Microsoft YaHei">acknowledgement</a></li>
 
<li><a href="NJU-China-human-practice.html" style="font-weight:bold;font-family:Microsoft YaHei">humanpractice</a></li>
 
<li><a href="NJU-China-project.html" style="font-weight:bold;font-family:Microsoft YaHei">project</a></li>
 
<li><a href="NJU-China-notebook.html" style="font-weight:bold;font-family:Microsoft YaHei">notebook</a></li>
 
<li><a href="NJU-China-safty.html" style="font-weight:bold;font-family:Microsoft YaHei">safty</a></li>
 
<li><a href="NJU-China-team.html" style="font-weight:bold;font-family:Microsoft YaHei">team</a></li>
 
<li><a href="NJU-China-model.html" style="font-weight:bold;font-family:Microsoft YaHei">model</a></li>
 
<li><a class="button" href="#detail" style="font-weight:bold;font-family:Microsoft YaHei">content</a></li>
 
</ul>
 
</div>
 
 
</div>
 
</div>
  
Line 390: Line 171:
 
<TABLE borderColor=#00ff99 height="100%" width="100%" border=0 style="table-layout:fixed">
 
<TABLE borderColor=#00ff99 height="100%" width="100%" border=0 style="table-layout:fixed">
 
     <TR height="100%">
 
     <TR height="100%">
<TD width="27%" bgColor=#EEE8AA style="vertical-align:top">
+
<TD width="27%" bgColor=#E6E8FA style="vertical-align:top">
 
</br>
 
</br>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Home</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Home</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-background.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Background</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-background.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Background</a></li>
 +
<div style="line-height:250%;margin-left:10%" id="main1" onClick="document.all.child0.style.display=(document.all.child0.style.display =='none')?'':'none'" ><a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Project</a></div>
 +
<div id="child0" style="display:none">
 +
<ul>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China/Design" style="font-weight:bold;font-family:幼圆;color:black">design</a></li>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-project/result.html" style="font-weight:bold;font-family:幼圆;color:black">results</a></li>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-project/conclusion.html" style="font-weight:bold;font-family:幼圆;color:black">conclusion</a></li>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-project/future work.html" style="font-weight:bold;font-family:幼圆;color:black">future work</a></li>
 +
</ul>
 +
</div>
 
<div style="line-height:250%;margin-left:10%" id="main1" onClick="document.all.child1.style.display=(document.all.child1.style.display =='none')?'':'none'" ><a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Model</a></div>
 
<div style="line-height:250%;margin-left:10%" id="main1" onClick="document.all.child1.style.display=(document.all.child1.style.display =='none')?'':'none'" ><a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Model</a></div>
 
<div id="child1" style="display:none">
 
<div id="child1" style="display:none">
 
<ul>
 
<ul>
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-model.html#deliverymodel" style="font-weight:bold;font-family:幼圆;color:black">Delivery model</a></li>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-model.html" style="font-weight:bold;font-family:幼圆;color:black">Delivery Module</a></li>
<li style="line-height:250%;margin-left:10%"><a href="#" style="font-weight:bold;font-family:幼圆;color:black">RNAi model</a></li>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China/RNAi" style="font-weight:bold;font-family:幼圆;color:black">RNAi Module</a></li>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China/signaling" style="font-weight:bold;font-family:幼圆;color:black">Signaling Module</a></li>
 
</ul>
 
</ul>
 
</div>
 
</div>
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-human-practice.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Human Practice</a></li>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China/Practices" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Human Practice</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-parts.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Parts</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-parts.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Parts</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-team.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Team</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-team.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Team</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-attribution.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Attribution</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-attribution.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Attribution</a></li>
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-colaboration.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Colaborations</a></li>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China/Collaborations" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Collaborations</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-safty.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Safety</a></li>
 
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-safty.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Safety</a></li>
 
<div style="line-height:250%;margin-left:10%" id="main2" onClick="document.all.child2.style.display=(document.all.child2.style.display =='none')?'':'none'" > <a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Notebook </div>
 
<div style="line-height:250%;margin-left:10%" id="main2" onClick="document.all.child2.style.display=(document.all.child2.style.display =='none')?'':'none'" > <a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Notebook </div>
Line 415: Line 206:
 
</ul>
 
</ul>
 
</div>
 
</div>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-acknowledgement.html#notebook" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">Acknowledgement</a></li>
  
 
</TD>
 
</TD>
 
     <TD width="73%" bgColor=#FFFFFF style="vertical-align:top;padding-left:80px;padding-right:80px;padding-top:50px;padding-bottom:50px;word-wrap:break-word;">
 
     <TD width="73%" bgColor=#FFFFFF style="vertical-align:top;padding-left:80px;padding-right:80px;padding-top:50px;padding-bottom:50px;word-wrap:break-word;">
你在火中涅槃,灵魂不死;你在花间长眠,记忆不消。绚烂的阳光是迎接你西去的光环,不知你独自一人去那方可会感到孤单?
+
<h1>Interviews and Propagation</h1>
[一]魂去
+
The perspective of our therapy has always been the major concern since we started our project. We kept thinking whether our therapy could be applied clinically or really help patients who suffer from drug abuse in terms of drug effects, expense, etc. Thus, we decided to consult the policemen, patients, neurobiologist and doctors about the feasibility and clinical appliance of our project. On the other hand, we went to communities on International Day Against Drug Abuse to propagate that all people should keep away from drug. Also we appealed people to refuse drugs and ultimately we got 528 signatures from people who declared their determination to fight against illegal drugs.
      起初听到你的死,我是愕然的。毕竟听说你的病情好了不少,却不料那只是最后的回光返照。
+
</br></br>
      我没有流泪,甚至没有悲伤,脑子里只是混混沌沌的一团。死?那是我们所有人最后的归宿吧。或许于你更是能够减少痛苦,未尝不是一件好事。
+
 
      一切被我想得太简单,甚至太过理所当然了。理智,真是一个可怕的局。
+
<img src = "https://static.igem.org/mediawiki/2015/a/a1/NJU-China-HP-HP%E5%90%88%E7%85%A7%E5%B0%8F%E5%9B%BE.jpg">
[二]席间
+
 
      小号、大鼓敲个不停,那种声音不得不说是一种噪音。良久声止,开始一个个念悼词。
+
<br><br>
      我这时才发现,原来我并没有那么冷漠,缘是城市的喧嚣麻木了我的心。想起那年你的温言软语、慈爱笑容,泪竟是就这样忍不住地从眼眶中溢出了。我撇过头,不愿让人看见,嘴角仍是挂着笑容。
+
 
      呵呵,我竟觉着在这葬礼上哭泣都是可耻的。望着周围人谈笑风生,我的心有点寒。到场的那么多人,究竟又有几个是真心的呢?可怜,还是可悲啊?
+
        <h2>Interview at rehab</h2>
      原来人可以铁石心肠这种程度,可毕竟他们中很多人比我和你的关系更近啊!听着那个花钱雇来哭的人呜咽,看着那人热泪纵横,我终是忍不住苦笑,竟是一个毫不相识的外人哭得最伤心。这是讽刺,还是笑话?
+
        <img src="https://static.igem.org/mediawiki/2015/1/1d/IMG_6847.JPG" style="width:500px"></br>
  [三]送葬
+
        <B>Location:</B> Women forced quarantine rehab of Jiangsu Province</br></br>
       你说,为什么他们还能那样淡然,可我偏偏忍不住泪流满面?为什么他们那个惊讶的表情让我竟是感到羞愧?好像自己做了什么惊天动地的事一样?
+
        <B>Present situation:</B></br>
       执着一根香,撒下一碗酒,三拜三叩,泪融于酒,我如若痴人。
+
Capability of the rehab is 2000 person, but it still can’t satisfy the magnificent needs. It applies semi militarization management, including laboring and psychological counseling on a daily basis. Rehab is short-handed in policemen, and the average patients that one policeman take charge of are over 10.</br></br>
       照礼我是不必披麻戴孝的,只需戴着那顶白色的帽子即可。沿着幽僻的小路,我跟着吹着小号开路的队伍走在末尾。
+
        <B>Vice superintendent:</B></br>
       风景甚好,埋在那棵大树底下,你会不会成为那树的枝,树的叶?
+
1.    The rehab is established by government, since policy nowadays strongly supports rehab projects. But due to the problem of personnel organization, now rehab is relatively short-handed.</br></br>
[四]感怀
+
2.    Rehab applies the quarantined method. Common drugs can be detoxed within a week, but heroin requires relatively longer time period. It takes about two years for patients to rejoin the society, but relapse rate is pretty high, especially for heroin. Many people went in an out for six or more times; some even relapsed within 24 hours.</br></br>
      死生有命,无可更改。谋事在人,成事在天。任你生前浮华万千,到头来不过一抔尘土,一捧青灰。愿逝者安息,生者恬淡。
+
        <B>Director (in charge of psychological counseling)</B><br>
      有时候我们看不到自己拥有的美好,直到失去才恍然叹息。逝者已矣,页已掀过,惜福、感恩,生活其实温暖如花。
+
1.    She mentioned that our project aims at curing physical pleasant sensation, but it should cooperate with psychological counseling as well.</br></br>
      花开半夏,倾尽繁华,愿你回眸半刹。你可听到我在同你夜话?
+
2.    She claimed that the cost of our medicine is pretty high, especially for individual cases. He suggested that we can start from patient who is well-off and not so heavily addicted.</br></br>
 +
3.    Withdrawal reaction of heroin is quite severe, so that some drug addicts tend to violate laws to get heroin.</br></br>
 +
4.Now ratio of infecting AIDS from drug taking is high. Ratio of juvenile drug taking is also rising, and the lower age limit drops from 17 to 15</br></br>
 +
        <B>Policeman:</B><br>
 +
1.    If our medicine could bring some terrible or even disgusting feelings to drug addicts when they are taking drugs, it may be more effective in preventing relapse.</br></br>
 +
2.    Addiction of methadone is actually stronger than heroin. It is not the ultimate cure but just a method of using drugs with less toxicity as a substitute.</br></br>
 +
        <B>Patients:</B><br>
 +
1.    Using methadone is not a desirable choice. It is addictive, and its physical reaction when addiction seizures is bigger than heroin’s. Some patients even choose relapsing heroin to relieve physical pain brought by methadone.</br></br>
 +
2.    Patients accept our medicine which could cure physical pleasant sensation of relapse, and don’t mind about GM medicine, for detoxification is of utmost importance.</br></br>
 +
3.    The costs and side-effects are their central concerns. If the medicine is expensive, then it will lose the possibility of wide promotion. Even though patients are willing to try, it will be too costly to use. On the other hand, patients oppose medicine that has strong side-effects, for their physical conditions are already seriously damaged by drugs.</br></br>
 +
4.    They claimed that central reason for relapse is not for physical dependence, but psychological one. Some people relapse because of feeling of emptiness; some rejoin former addicts crowd; some think luckily that a single one time is safe from addiction or prison.</br></br>
 +
        <B>Final reflections:</B></br>
 +
1.    Detoxification needs concerted efforts from society, community and family, in which psychological withdrawal weighs most. Our medicine aims at curing physical addiction as much as possible. As for psychological part, maybe we can enable our medicine to bring disgusting feelings to medicine-takers when they take drugs, or maybe we can research on the psychological dependence of brain in the future.</br></br>
 +
2.    Acceptability of our project is quite high from policemen and patients, and they have high expectations for the medicine to pass through clinical trials and enter the market as soon as possible. This strongly illustrate our project has profound meanings.</br></br>
 +
3.    As the most widely used medicine for detoxification, methadone is not so ideal in patients’ eyes, and their addiction is even stronger than drugs. As a consequence, research of new detoxification medicine is urgently needed.</br></br>
 +
4.    Trend of abusing methamphetamine is rising, which requires society to voice out its tremendous danger. Some people use methamphetamine to get rid of heroin. Even though they were addicted to methamphetamine, the reaction of heroin did relieve after taking methamphetamine. That makes us wonder if there exists counteraction at the site of action between heroin and methamphetamine, and if a medicine imitating methamphetamine could be designed, which also have the ability to substitute heroin, but dose no damage to the brain and is also safe from addiction. Due to the unawareness about addiction mechanism of methamphetamine, designation of such medicine could begin after the whole process is unfolded.</br></br>
 +
        <h2>Interview with neurobiologist</h2>
 +
<img src="https://static.igem.org/mediawiki/2015/7/7a/Interview_with_neurobiologist.jpg" style="width:500px"></br>
 +
We consulted two neurobiologists, Professor Jian Jing and Professor Liang Li from Nanjing University, to help us evaluate our project from a more academic perspective. </br/></br>
 +
 
 +
Professor Jing first praised us for creativity and novelty of our project and for our brilliant job done in terms of difficulty of our project. Nevertheless, both of two neurobiologists point our several defects of our project to help us direct the future work.</br></br>
 +
 
 +
Although our therapeutic exosome is capable of delivering siRNA into brain after proper modification, it fails to distinguish specific regions in the brain. The ventral tegmental area (VTA) in the midbrain contains dopaminergic neurons and is responsible for opioids reward. Downregulating the level of MOR protein in other regions of brain may bring about severe safety problems because MOR is indispensable of pain relieving. Professor Jing recommended us to further modify exosome so that it can be directly and precisely targeted to VTA in the midbrain.</br></br>
 +
 
 +
Professor Jing also casted doubts on whether our therapy could work on the human beings although our experiments on mice were effective. There are many cases where drug effects tested on animal models are inconsistent with effects tested on human beings.</br> </br>
 +
 
 +
Professor Li argued that we should consider culturing primary neurons in vitro because these cells can give more authentic feedback. Neuro2A cell line we tested in our experiment is immortalized and differs from cells in real situation.</br></br>
 +
 
 +
Other questions include whether downregulating MOR with the efficiency of 50% is sufficient to suppress the rewarding effects? We tried to answer this question using both computational and experimental methods, and the details of which are available in modeling and experiment sections.</br></br>
 +
 
 +
Finally, we need to redesign siRNA because the siRNA we currently used is designed to target mouse MOR gene. We should also consider the safety issues concerning immune response caused by other proteins encapsulated in exosomes when applying our therapy clinically.</br></br>
 +
       <h2>Interview with doctor</h2>
 +
       <img src="https://static.igem.org/mediawiki/2015/3/33/NJU-China-HP-doctor.jpg" style="width:400px"></br>
 +
We visited our local Methadone Clinic in Jinshan Hospital, Nanjing. Doctor Guangwei Geng was very generous with his time, sharing his opinions on the current situation of drug abuse and clinical challenges he met, as well as comments about our project with our team members.</br></br>
 +
 
 +
Doctor Geng first introduced the situation of drug abuse, specifically of heroin abuse in Nanjing. The statistic has shown that over 2,000 people are registered as heroin abusers out of a total population of 8 million, demonstrating that drug abuse, especially involving heroin or other opioids, is still a severe problem which is urgent to solve.</br></br>
 +
 
 +
We then shared our knowledge on the mechanism of opioids addiction and the principle we based on to develop our therapy with Doctor Geng. Doctor Geng believed that the current therapy of drug detoxification is quite limited because we know nothing about drugs, other than opioids, of mechanisms underlying addiction or current existence of any possible treatment methods. He held a positive view on our project, indicating that our project provided a brand new approach to dealing with treatment of drug addiction and can have a potential for further application.</br></br>
 +
 
 +
However, Doctor Geng also pointed out some drawbacks of our therapy, giving us clues on improvement of our project. The high expense of our drug may impede the progress of further clinical application. We have carefully examined this problem and figured out some potential directions in our future work section.</br></br>
 +
 
 +
Doctor Geng recommended us to perform clinical trials as soon as possible because we, at present, merely have data on the basis of mice experiments. He also guided us on the recruitment of volunteers to perform clinical trials. He suggested us to focus on patients addicted to morphine first and also give priority to those who develop a slight degree of addiction. As stated by Doctor Geng, the effect of our therapy is more explicitly observed in this group of people. In addition, under the circumstances that the government encourages to accelerate the development of drugs for detoxification, we have to be familiar with the standard procedure of administrative examination and approval. </br></br>
 +
 
 +
        <h2>Human practice in International Day against Drug Abuse</h2>
 +
We have already known that the drug does harm to our human society. According to that, our team wishes to expand the value of our project to help solve the drug problems. We did some human practice to propagate the harm of drug. Furthermore, we try to figure the problem out on clinical treatment in order to find a new medicine for drug addiction.
 +
Firstly, we made some brochures that include the introduction of various drug, the existing methods of drug treatment and terrible instances of people who addicted to drug. With those materials, we went to communities on International Day Against Drug Abuse to propagate that all people should keep away from drug. Also we appealed people to refuse drugs and ultimately we got 528 signatures from people who declared their determination to fight against illegal drugs. </br></br>
 +
       <img src="https://static.igem.org/mediawiki/2015/c/c9/NJU-China-HP-fig1.png" style="width:700px"></br>
 +
Figure 1. (a) One of the brochures made by ourselves that introduce drug. (b) Introduction of the existing methods of drug treatment and instances of people who addicted to drug. (c) Introduction of Methamphetamine in our brochures. (d) The brochures we made to show our project.</br>
 +
       <img src="https://static.igem.org/mediawiki/2015/8/86/NJU-China-HP-Fig2.png" style="width:700px"></br>
 +
Figure 2. Our propagation in communities in four Districts during three days.</br>
 +
     
 +
        <img src="https://static.igem.org/mediawiki/2015/c/c2/NJU-China-HP-fig3.png" style="width:700px"></br>
 +
 
 +
Figure 3. We appealed people vary from kids to old men to sign for refusing drug.</br>
 +
        <img src="https://static.igem.org/mediawiki/2015/3/32/NJU-China-HP-fig4.jpg" style="width:700px"></br>
 +
Figure 4. The signatures we collected for rejecting drug.</br>
 
</TD>
 
</TD>
 
     </TR>
 
     </TR>

Latest revision as of 18:54, 18 September 2015

humanpractice


  • Home
  • Background
  • Human Practice
  • Parts
  • Team
  • Attribution
  • Collaborations
  • Safety
  • Acknowledgement
  • Interviews and Propagation

    The perspective of our therapy has always been the major concern since we started our project. We kept thinking whether our therapy could be applied clinically or really help patients who suffer from drug abuse in terms of drug effects, expense, etc. Thus, we decided to consult the policemen, patients, neurobiologist and doctors about the feasibility and clinical appliance of our project. On the other hand, we went to communities on International Day Against Drug Abuse to propagate that all people should keep away from drug. Also we appealed people to refuse drugs and ultimately we got 528 signatures from people who declared their determination to fight against illegal drugs.



    Interview at rehab


    Location: Women forced quarantine rehab of Jiangsu Province

    Present situation:
    Capability of the rehab is 2000 person, but it still can’t satisfy the magnificent needs. It applies semi militarization management, including laboring and psychological counseling on a daily basis. Rehab is short-handed in policemen, and the average patients that one policeman take charge of are over 10.

    Vice superintendent:
    1. The rehab is established by government, since policy nowadays strongly supports rehab projects. But due to the problem of personnel organization, now rehab is relatively short-handed.

    2. Rehab applies the quarantined method. Common drugs can be detoxed within a week, but heroin requires relatively longer time period. It takes about two years for patients to rejoin the society, but relapse rate is pretty high, especially for heroin. Many people went in an out for six or more times; some even relapsed within 24 hours.

    Director (in charge of psychological counseling)
    1. She mentioned that our project aims at curing physical pleasant sensation, but it should cooperate with psychological counseling as well.

    2. She claimed that the cost of our medicine is pretty high, especially for individual cases. He suggested that we can start from patient who is well-off and not so heavily addicted.

    3. Withdrawal reaction of heroin is quite severe, so that some drug addicts tend to violate laws to get heroin.

    4.Now ratio of infecting AIDS from drug taking is high. Ratio of juvenile drug taking is also rising, and the lower age limit drops from 17 to 15

    Policeman:
    1. If our medicine could bring some terrible or even disgusting feelings to drug addicts when they are taking drugs, it may be more effective in preventing relapse.

    2. Addiction of methadone is actually stronger than heroin. It is not the ultimate cure but just a method of using drugs with less toxicity as a substitute.

    Patients:
    1. Using methadone is not a desirable choice. It is addictive, and its physical reaction when addiction seizures is bigger than heroin’s. Some patients even choose relapsing heroin to relieve physical pain brought by methadone.

    2. Patients accept our medicine which could cure physical pleasant sensation of relapse, and don’t mind about GM medicine, for detoxification is of utmost importance.

    3. The costs and side-effects are their central concerns. If the medicine is expensive, then it will lose the possibility of wide promotion. Even though patients are willing to try, it will be too costly to use. On the other hand, patients oppose medicine that has strong side-effects, for their physical conditions are already seriously damaged by drugs.

    4. They claimed that central reason for relapse is not for physical dependence, but psychological one. Some people relapse because of feeling of emptiness; some rejoin former addicts crowd; some think luckily that a single one time is safe from addiction or prison.

    Final reflections:
    1. Detoxification needs concerted efforts from society, community and family, in which psychological withdrawal weighs most. Our medicine aims at curing physical addiction as much as possible. As for psychological part, maybe we can enable our medicine to bring disgusting feelings to medicine-takers when they take drugs, or maybe we can research on the psychological dependence of brain in the future.

    2. Acceptability of our project is quite high from policemen and patients, and they have high expectations for the medicine to pass through clinical trials and enter the market as soon as possible. This strongly illustrate our project has profound meanings.

    3. As the most widely used medicine for detoxification, methadone is not so ideal in patients’ eyes, and their addiction is even stronger than drugs. As a consequence, research of new detoxification medicine is urgently needed.

    4. Trend of abusing methamphetamine is rising, which requires society to voice out its tremendous danger. Some people use methamphetamine to get rid of heroin. Even though they were addicted to methamphetamine, the reaction of heroin did relieve after taking methamphetamine. That makes us wonder if there exists counteraction at the site of action between heroin and methamphetamine, and if a medicine imitating methamphetamine could be designed, which also have the ability to substitute heroin, but dose no damage to the brain and is also safe from addiction. Due to the unawareness about addiction mechanism of methamphetamine, designation of such medicine could begin after the whole process is unfolded.

    Interview with neurobiologist


    We consulted two neurobiologists, Professor Jian Jing and Professor Liang Li from Nanjing University, to help us evaluate our project from a more academic perspective.

    Professor Jing first praised us for creativity and novelty of our project and for our brilliant job done in terms of difficulty of our project. Nevertheless, both of two neurobiologists point our several defects of our project to help us direct the future work.

    Although our therapeutic exosome is capable of delivering siRNA into brain after proper modification, it fails to distinguish specific regions in the brain. The ventral tegmental area (VTA) in the midbrain contains dopaminergic neurons and is responsible for opioids reward. Downregulating the level of MOR protein in other regions of brain may bring about severe safety problems because MOR is indispensable of pain relieving. Professor Jing recommended us to further modify exosome so that it can be directly and precisely targeted to VTA in the midbrain.

    Professor Jing also casted doubts on whether our therapy could work on the human beings although our experiments on mice were effective. There are many cases where drug effects tested on animal models are inconsistent with effects tested on human beings.

    Professor Li argued that we should consider culturing primary neurons in vitro because these cells can give more authentic feedback. Neuro2A cell line we tested in our experiment is immortalized and differs from cells in real situation.

    Other questions include whether downregulating MOR with the efficiency of 50% is sufficient to suppress the rewarding effects? We tried to answer this question using both computational and experimental methods, and the details of which are available in modeling and experiment sections.

    Finally, we need to redesign siRNA because the siRNA we currently used is designed to target mouse MOR gene. We should also consider the safety issues concerning immune response caused by other proteins encapsulated in exosomes when applying our therapy clinically.

    Interview with doctor


    We visited our local Methadone Clinic in Jinshan Hospital, Nanjing. Doctor Guangwei Geng was very generous with his time, sharing his opinions on the current situation of drug abuse and clinical challenges he met, as well as comments about our project with our team members.

    Doctor Geng first introduced the situation of drug abuse, specifically of heroin abuse in Nanjing. The statistic has shown that over 2,000 people are registered as heroin abusers out of a total population of 8 million, demonstrating that drug abuse, especially involving heroin or other opioids, is still a severe problem which is urgent to solve.

    We then shared our knowledge on the mechanism of opioids addiction and the principle we based on to develop our therapy with Doctor Geng. Doctor Geng believed that the current therapy of drug detoxification is quite limited because we know nothing about drugs, other than opioids, of mechanisms underlying addiction or current existence of any possible treatment methods. He held a positive view on our project, indicating that our project provided a brand new approach to dealing with treatment of drug addiction and can have a potential for further application.

    However, Doctor Geng also pointed out some drawbacks of our therapy, giving us clues on improvement of our project. The high expense of our drug may impede the progress of further clinical application. We have carefully examined this problem and figured out some potential directions in our future work section.

    Doctor Geng recommended us to perform clinical trials as soon as possible because we, at present, merely have data on the basis of mice experiments. He also guided us on the recruitment of volunteers to perform clinical trials. He suggested us to focus on patients addicted to morphine first and also give priority to those who develop a slight degree of addiction. As stated by Doctor Geng, the effect of our therapy is more explicitly observed in this group of people. In addition, under the circumstances that the government encourages to accelerate the development of drugs for detoxification, we have to be familiar with the standard procedure of administrative examination and approval.

    Human practice in International Day against Drug Abuse

    We have already known that the drug does harm to our human society. According to that, our team wishes to expand the value of our project to help solve the drug problems. We did some human practice to propagate the harm of drug. Furthermore, we try to figure the problem out on clinical treatment in order to find a new medicine for drug addiction. Firstly, we made some brochures that include the introduction of various drug, the existing methods of drug treatment and terrible instances of people who addicted to drug. With those materials, we went to communities on International Day Against Drug Abuse to propagate that all people should keep away from drug. Also we appealed people to refuse drugs and ultimately we got 528 signatures from people who declared their determination to fight against illegal drugs.


    Figure 1. (a) One of the brochures made by ourselves that introduce drug. (b) Introduction of the existing methods of drug treatment and instances of people who addicted to drug. (c) Introduction of Methamphetamine in our brochures. (d) The brochures we made to show our project.

    Figure 2. Our propagation in communities in four Districts during three days.

    Figure 3. We appealed people vary from kids to old men to sign for refusing drug.

    Figure 4. The signatures we collected for rejecting drug.