说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 药物开发
1)  Drug development
药物开发
1.
On the basis of reviewing the HIV therapeutics and drug development, the author summarizes the potential new targets of drug development and new strategies of therapy in AIDS, and discusses the challenges for the development of new drugs and strategies in the principles of traditional Chinese medicine due to complexity of pathogenesis in AIDS.
HIV感染的治疗策略目前还处在探索中 ,在综述了HIV药物治疗和药物开发的基础上 ,总结了艾滋病药物研发潜在的新靶点和药物治疗的新策略 ,提出艾滋病发病机理的复杂性为中药研发提供一个极好的机会的观
2.
New biotechnology and computer technology give new thoughts for drug development.
传统的药物开发方法在很多方面受到制约,而新的生物技术以及计算机技术为药物开发提供了新的思路。
3.
This article provided an overview of mutilins used in human,and described recent advances in the drug development and patents during 2004-2008.
随着细菌耐药现象的日益严重,从天然产物中寻找抗菌机制独特的先导化合物已成为新型抗菌药物开发的重要手段。
2)  drug discovery
药物开发
1.
Combinatorial chemistry and its application to drug discovery;
组合化学及其在药物开发中的应用
2.
Combinatorial chemistry and its application to drug discovery, including combinatorial strategies and combinatorial synthesis of compounds libraries were reviewed in this paper.
从化合物库的组合技巧和组合合成方法两个方面探讨了组合化学及其在药物开发中的应用。
3.
It is of great importance to identify the new chemical entity (NCE) with poor pharmacokinetic properties early in drug discovery pipeline.
药物开发初期,就将药动学性质不佳的新化学实体剔除出去具有十分重要的意义。
3)  pharmaceutical development
药物开发
4)  mold of drug development
药物开发模式
5)  drug research and development
药物研究和开发
1.
The applications of positron emission tomography(PET) in drug research and development;
正电子发射断层显像在药物研究和开发中的应用
6)  drug research and development
药物研究开发
1.
Development of metabonomics and drug research and development;
代谢组学的发展与药物研究开发
补充资料:Pro/E二次开发使用toolkit开发trigger的程序

使用toolkit开发trigger的程序时,往往需要能够连续通过trigger来触发dll中的函数.
我碰到的问题:
   1.配置trigger:
   Name: CimDll
   Event: Create PIV
   Time:  POST
   RequireNO
   DLL:Cim.dll
   Function:PDMTPIVCreatePostOperation
   
  2.源代码:
   int PDMDLLInit()
{
   PTCERROR pdm_status;
   FILE      *g_pfileLog;
   g_pfileLog =fopen("test.dat","w");
   setbuf(g_pfileLog,NULL);
   fprintf(g_pfileLog,"begin test\n");
   pdm_status = PDMTriggerRegister("PDMTPIVCreatePostOperation", PDMTPIVCreatePostOperation);
   if (pdm_status != PDM_SUCCESS)
   {  
    printf("Failed to Register Trigger PIV Create Post.\n");
   }
    return (pdm_status);
}


int PDMTPIVCreatePostOperation(int argc, void **argv)
{
   fprintf(g_pfileLog,"test\n");
   .....
   fprintf(g_pfileLog,"end test\n");
   fclose(g_pfileLog);


}


   结果:以上代码存在的问题:如果我们在第一次checkin到C/S中后,删除test.dat文件,然后再进行checkin时,发现没有再生成test.dat,在函数PDMTPIVCreatePostOperation()中所进行的对文件的操作都无效.
   原因:我们使用trigger触发时,真正起作用的是函数:PDMTPIVCreatePostOperation(),而PDMDLLInit()只是在第一次checkin时起作用,所以在第一次调用PDMTPIVCreatePostOperation()后,我就fclose(g_pfileLog),所以出现了上面的情况.所以注意的是:不要把一些重要的东西放在函数PDMDLLInit()中.

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条