- 英
- cAMP response element、CRE
WordNet
- give an artificially banal or sexual quality to
- temporary living quarters specially built by the army for soldiers; "wherever he went in the camp the men were grumbling" (同)encampment, cantonment, bivouac
- shelter for persons displaced by war or political oppression or for religious beliefs (同)refugee camp
- a site where care and activities are provided for children during the summer months; "city kids get to see the country at a summer camp" (同)summer camp
- a penal institution (often for forced labor); "China has many camps for political prisoners"
- temporary lodgings in the country for travelers or vacationers; "level ground is best for parking and camp areas"
- a group of people living together in a camp; "the whole camp laughed at his mistake"
- something that is considered amusing not because of its originality but because of its unoriginality; "the living room was pure camp"
- establish or set up a camp (同)camp down
- providing sophisticated amusement by virtue of having artificially (and vulgarly) mannered or banal or sentimental qualities; "they played up the silliness of their roles for camp effect"; "campy Hollywood musicals of the 1940s" (同)campy
- live in or as if in a tent; "Can we go camping again this summer?"; "The circus tented near the town"; "The houseguests had to camp in the living room" (同)encamp, camp out, bivouac, tent
PrepTutorEJDIC
- 〈C〉(軍隊・登山隊・探検隊などの)『野営地』 / 〈C〉〈U〉野営のテント,仮設小屋 / 〈U〉野営,キャンプ[生活];軍隊生活 / 〈C〉夏季キャンプ場,サマーキャンプ / 《集合的に》野営する人たち,キャンプする人たち / 〈C〉(主義・信条などを同じくする)同志たち,同じ陣営;同じ立場 / 『野営する』,キャンプ生活を送る《+『out』》
- =homosexual / (男性が)女々しい / すたれた,古めかしい
UpToDate Contents
全文を閲覧するには購読必要です。 To read the full text you will need to subscribe.
Japanese Journal
- 骨シアロタンパク質(BSP)遺伝子の転写に対するアンドロゲン受容体の効果
- 高井 英樹,小方 頼昌
- 日本歯周病学会会誌 49(1), 27-36, 2007-03-28
- … 2塩基対ずつの変異を挿入したミューテーションプラスミドを用いたルシフェラーゼアッセイの結果,ARの作用は,cAMP応答配列 (CRE) およびアクチベータープロテイン1と重複したグルココルチコイド応答配列 (AP1/GRE) の2つの応答配列を介すると考えられた。 …
- NAID 10027094023
- 新規細胞内制御因子V-1によるcAMP応答配列を仲介した GTP cyclohydrolase I 遺伝子の発現誘導
- 山国 徹,鈴木 崇弘,稲垣 秀人 [他],大泉 康,永津 俊治,一瀬 宏
- 日本薬理学雑誌 : FOLIA PHARMACOLOGICA JAPONICA 120, 82P-84P, 2002-11-10
- NAID 10018601185
- 心筋電位依存性K`+´チャネル遺伝子の発現調節の分子機構
- 松原 弘明,森 泰清,稲田 満夫
- 心電図 15(2), 130-138, 1995
- … 心筋電位依存性K<SUP>+</SUP>チャネルは心筋膜電位維持および活動電位保持に重要である.発現量の豊富なKv1.5とKv1.4チャネルの発現調節機構が検討された.Kv1.5遺伝子は上流域にcAMP応答配列 (CRE) が存在し心筋細胞内cAMP濃度上昇はKv1.5mRNA量を増加させた.この作用はOREを介し転写レベルで調節されていた.一方, 下垂体細胞ではcAMPはCREを介してmRNA量を減少させた.Kv1.4遺伝子はcAMPでは発現調節を受けず細胞内Ca<SUP>2+&l …
- NAID 130004244751
Related Links
- 栄養・生化学辞典 - cAMP応答配列の用語解説 - CREともいう.遺伝子の調節領域にある配列で,cAMPの細胞内濃度上昇がある場合にこの領域に調節タンパク質が結合して遺伝子の転写の促進もしくは抑制をするとされる領域.結合する ...
- cAMPによる細胞内での情報伝達 cAMP(cyclic adenosine 3',5'-monophosphate)は細胞内の情報伝達物質であり、様々な生命活動において重要な 役割を担っている。 ホルモンなど様々な情報伝達物質(ligand)が体内で分泌されると、それら ...
Related Pictures
★リンクテーブル★
[★]
- 関
- CRE
[★]
- 英
- cAMP response element-binding protein、CRE-binding protein、CREB
- 関
- CRE結合タンパク質、サイクリックAMP応答エレメント結合タンパク質、サイクリックAMP応答配列結合タンパク質
[★]
- 英
- sequence、arrangement、array、constellation、arrange、sequential
- 関
- 協定、経時的、系列、結果、シークエンス、シーケンス、順序、準備、筋道、整列、取り計らう、配置、配列決定、連続、連続的、逐次、結果としての、時系列、並べる、アレイ、順次、整理
array_unique()
for ( $i = 0 ; $i < 5 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 1;
}
for ( $i = 5 ; $i < 15 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 2;
}
for ( $i = 15 ; $i < 20 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 3;
}
$a['w'][5]=100;
$a['w'][15]=100;
var_dump($a);
$b = array_unique($a['w']); #配列 重複キー 消去
var_dump($b);
-----
array(2) {
["w"]=> array(20)
{
[0]=> int(100) [1]=> int(101) [2]=> int(102) [3]=> int(103) [4]=> int(104) [5]=> int(100) [6]=> int(106) [7]=> int(107) [8]=> int(108) [9]=> int(109) [10]=> int(110) [11]=> int(111) [12]=> int(112) [13]=> int(113) [14]=> int(114) [15]=> int(100) [16]=> int(116) [17]=> int(117) [18]=> int(118) [19]=> int(119) }
["m"]=> array(20)
{
[0]=> int(1) [1]=> int(1) [2]=> int(1) [3]=> int(1) [4]=> int(1) [5]=> int(2) [6]=> int(2) [7]=> int(2) [8]=> int(2) [9]=> int(2) [10]=> int(2) [11]=> int(2) [12]=> int(2) [13]=> int(2) [14]=> int(2) [15]=> int(3) [16]=> int(3) [17]=> int(3) [18]=> int(3) [19]=> int(3) } }
array(18) {
[0]=> int(100) [1]=> int(101) [2]=> int(102) [3]=> int(103) [4]=> int(104) [6]=> int(106) [7]=> int(107) [8]=> int(108) [9]=> int(109) [10]=> int(110) [11]=> int(111) [12]=> int(112) [13]=> int(113) [14]=> int(114) [16]=> int(116) [17]=> int(117) [18]=> int(118) [19]=> int(119) }
配列の要素の除去
array_pop
- 配列のインデックスから、末尾にあるインデックス1つを取り除く。指定した変数の配列が空だった場合には、null が帰される。
配列の結合
- 1. +演算子。同じキーを上書きする。
- 2. array_push(array, array)とすると、出力が array([0]->array, [1]->array)になる。
- 3. array_match(out_array, add_array)これでokだが、add_array = array();だとエラーが起こるので、適当なトラップが必要。 ← array_mergeの間違えでしょ?
配列要素の結合
$str = implode('/',$array);
配列の要素表示
[★]
環状アデノシン一リン酸 サイクリックAMP 環状AMP adenosine 3',5'-cyclic monophosphate, cyclic AMP
[★]
- 英
- responsive element, response element
- 関
- estrogen response element, cyclic AMP response element
[★]
[★]
- 英
- row、tier、train
- 関
- 作条、訓練、層、連、段