1)  Candidate key
候选键
2)  candidate key
"候选关键字, 候选键"
3)  candidate
候选
4)  substituted solder
候选焊料
5)  Candidate genes
候选基因
1.
Cloning to rule out 10 candidate genes located in chromosome 12q24 for Charcot-Marie-Tooth disease type 2L;
定位于12q24的腓骨肌萎缩症2L型10个候选基因的排除克隆
2.
Analysis for detecting power of candidate genes for quantitative trait;
数量性状两个候选基因检测效率分析
3.
Eight short tandem repeats(STRs) spanning five hereditary AI candidate genes were selected and linkage analysis between the genetic markers and the disease loci.
方法收集1个常染色体显性AI家系,提取该家系19名成员(其中患者9例)的外周血DNA,选择横跨釉蛋白基因、成釉蛋白基因、釉丛蛋白基因、基质金属蛋白酶基因、丝氨酸蛋白酶基因5个候选基因的短串联重复序列(STR),进行PCR扩增,经变性聚丙烯酰胺凝胶电泳确定基因型,并进行连锁分析。
6)  candidate gene
候选基因
1.
Identification of a novel candidate gene KLRC1 within the putative susceptibility locus for systemic lupus erythematosus at 12p12.3-13.2 in a Chinese cohort;
荧光定量PCR技术验证KLRC1为人类染色体12p12.3-13.2上系统性红斑狼疮相关的候选基因
2.
Research progress on candidate genes affecting the milk traits in cattle;
影响奶牛产奶性状候选基因的研究进展
3.
Methods of bioinformatic analysis for candidate genes underlying quantitative trait loci(QTLs);
数量性状位点(QTLs)内候选基因的生物信息学分析方法
参考词条
补充资料:UG自定义右键弹出菜单和快捷键

UG的右键弹出菜单包含了一些我们常用的功能,比如Roate、Fit等,为了使用的更加方便,我们也可以自己打造!打开UG安装目录下的UGII下的menus文件夹,里面包含了一些*.men和*.tbr,我们以文本方式打开它,发现也不难理解。例如,我们想在右键弹出菜单里面的roate和pan之间加入如图示的view下的orient功能,首先我们打开ug_main.men,查找orient,会看到下面的内容:



BUTTON UG_VIEW_REFRESH
LABEL &Refresh
BITMAP refresh_window.bmp
ACCELERATOR F5
ACTIONS STANDARD



CASCADE_BUTTON UG_VIEW_EDIT
LABEL O&peration



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACTIONS STANDARD



参考上面部分我们会看出快捷键的定义是*ACCELERATOR来指定的,我们把红色部分即BUTTON UG_VIEW_ORIENT的LABEL下面加入一行ACCELERATOR Ctrl+Alt+O(这里可以自行定义,但不要和别的重复),保存,这样我们就把快捷键定义好了,然后我们选中红色部分复制。接着打开ug_view_popup.men,它就是右键弹出菜单的定义文件。为了把它放在roate和pan之间,我们把刚才复制的部分粘贴在下面图示的位置:



TOGGLE_BUTTON UG_VIEW_POPUP_ROTATE
LABEL R&otate
BITMAP rotate.bmp
ACCELERATOR F7
ACTIONS STANDARD



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACCELERATOR Ctrl+Alt+O
ACTIONS STANDARD



TOGGLE_BUTTON UG_VIEW_POPUP_PAN
LABEL &Pan
BITMAP pan.bmp
ACCELERATOR F9
ACTIONS STANDARD

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