- 英
- sequence homology、sequence identity
- 関
- 相同配列
UpToDate Contents
全文を閲覧するには購読必要です。 To read the full text you will need to subscribe.
- 1. ビタミンKおよびその合成ならびにガンマカルボキシグルタミン酸の機能vitamin k and the synthesis and function of gamma carboxyglutamic acid [show details]
…are Gas6 and the proline-rich Gla proteins. Gas6 (growth-arrest-specific gene 6) has marked sequence homology in the Gla domain to the vitamin K-dependent blood coagulation and regulatory proteins, in particular …
- 2. 成人における免疫性血小板減少症(ITP):二次療法immune thrombocytopenia itp in adults second line and subsequent therapies [show details]
…biopsies after stopping the drug that showed resolution of the abnormalities. Romiplostim has no sequence homology to thrombopoietin and therefore is not expected to result in the formation of inhibitory antibodies…
- 3. C型肝炎ウイルスの特性characteristics of the hepatitis c virus [show details]
…Nucleotide sequence homology is greater than 95 percent. Over decades and centuries, the degree of HCV diversity has evolved into several distinct genotypes of the virus . Sequence homology between genotypes …
- 4. 混合性結合組織病における抗U1-RNP抗体anti u1 rnp antibodies in mixed connective tissue disease [show details]
…of the amino acid sequence of the U1-70 kDa epitope with the sequences of fungal, viral, and bacterial proteins found that the 70 kDa epitope shares highly significant sequence homology with 13 fungal proteins …
- 5. エプスタインバーウイルス(EBウイルス)のウイルス学virology of epstein barr virus [show details]
…from undergoing apoptosis. BCRF1 is an EBV late gene with nearly identical primary amino acid sequence homology and biological activity to human IL-10 . Much of the function of EBV has been determined from …
Japanese Journal
- 新規アニサキス主要アレルゲン(Ani s 14)の分子クローニングおよび発現
- 配列相同性に基づくタンパク質のリガンド結合候補部位の評価(機械学習によるバイオデータマインニング,一般)
- 電子情報通信学会技術研究報告. IBISML, 情報論的学習理論と機械学習 114(105), 171-172, 2014-06-18
- NAID 110009925781
- 配列相同性に基づくタンパク質のリガンド結合候補部位の評価(機械学習によるバイオデータマインニング,一般)
Related Links
- ほとんどの場合、配列類似度(相同性)が高ければ類縁度も高いと考えられるため、 ホモロジー検索は、他のタンパク質よりも配列相同性が有意に高い類似配列を配列 データベース中から検索することになる。実際、新たな生物種のゲノム塩基配列が解読 された ...
- 遺伝学では、相同性という言葉はタンパク質のアミノ酸配列や遺伝子の塩基配列が 共通の祖先をもつときに用いられる。この相同性はオーソロジー(種分岐相同性)と パラロジー(遺伝子重複相同性)の二つに分けられる。
Related Pictures
★リンクテーブル★
[★]
- 関
- homologous sequence、sequence identity
[★]
- 英
- homologous sequence
- 関
- 配列相同性
[★]
- 関
- sequence homology
[★]
- 英
- amino acid sequence homology
[★]
- 英
- 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);
配列の要素表示
[★]
- 英
- homology、homologous
- 関
- 相同、相同的、同属、同族、ホモロジー、類似
-homology