药物开发,Drug development
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.随着细菌耐药现象的日益严重,从天然产物中寻找抗菌机制独特的先导化合物已成为新型抗菌药物开发的重要手段。
英文短句/例句

1.Application of Ultrasonic Technology in Development and Research of Medicament超声波技术在药物开发研究中的应用
2.Reserach and Development of Microbiological Medicines and Chemical Reagents微生物药品研究与开发
3.Resistant Mechanism of Bacteria and Development of Pharmaceuticals against Bacterial Resistance;细菌耐药的机理及抗耐药菌药物的开发
4.Pharmic Effect and Clinical Pharmacology of Chicory Natural Products中草药菊苣天然产物的药效药理及开发前景
5.Biogenic pesticides, also known as biological pesticides or biogenic natural product pesticides, develop from living resources.生物源农药亦称“生物农药”或称为“生物源天然产物农药”,是指利用生物资源开发的农药。
6.Here's how Millennium Pharmaceuticals plans to do it:本文描述千年制药公司开发药物的过程:
7.Retrospection,stratagem,and practice on innovative drug research and development of Chinese materia medica中药创新药物研究开发的回顾、策略与实践
8.Application of bioisosterism in pesticide and medicine development生物电子等排原理在农药与医药开发中的应用
9.Research on Computation Method Related to Pharmacokinetics and Software Development;药物动力学相关计算研究与软件开发
10.THE CONTINUED UTILIZATION AND STUDY OF MEDICINAL GYMNOPERM IN GUIZHOU;贵州裸子药用植物及可持续开发利用
11.Research on the Medicinal Pteridophyte, Its Exploitation and Utilization;药用蕨类植物资源研究及其开发利用
12.Patent issues involved in the development of drug targets药物靶标开发中涉及的专利问题分析
13.Characteristic and regular patterns in exploration of drug targets abroad国外药物靶标开发的规律与特点分析
14.The Platform of Traditional Chinese Medicine Logistics Based J2EE Technology基于J2EE的中药物流平台的开发
15.Development and Application of Nicotine Extracted from Plant as a Parasiticide Used in Aquaculture;水产用植物源杀虫药物—烟碱的应用开发研究
16.Modern biotechnology and Exploiting the resource of Medical Ethnobotany;现代生物技术与药用民族植物资源利用和开发
17.Along with the development and application of new drugs, the incidence of drug-induced erythro-derma tends to increase, so does the number of sensitizing drugs.随着药物的使用和新药的开发应用,药物过敏引起的红皮病呈上升趋势,致敏药也逐渐增多。
18.Application of Drug Metabolism and Pharmacokinetics Evaluation in Drug Discovery and Development;药物代谢动力学性质评价在新药发现及开发中的应用研究
相关短句/例句

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()中.