- 英
- LINE-1 element
- 関
- 長散在型反復配列、L1配列
WordNet
- mark with lines; "sorrow had lined his face"
- a length (straight or curved) without breadth or thickness; the trace of a moving point
- a single frequency (or very narrow band) of radiation in a spectrum
- reinforce with fabric; "lined books are more enduring"
- a particular kind of product or merchandise; "a nice line of shoes" (同)product line, line of products, line of merchandise, business line, line of business
- the road consisting of railroad track and roadbed (同)railway line, rail line
- a commercial organization serving as a common carrier
- acting in conformity; "in line with"; "he got out of line"; "toe the line"
- something (as a cord or rope) that is long and thin and flexible; "a washing line"
- a conceptual separation or distinction; "there is a narrow line between sanity and insanity" (同)dividing_line, demarcation, contrast
- a formation of people or things one behind another; "the line stretched clear around the corner"; "you must wait in a long line at the checkout counter"
- a formation of people or things one beside another; "the line of soldiers advanced with their bayonets fixed"; "they were arrayed in line of battle"; "the cast stood in line for the curtain call"
- a fortified position (especially one marking the most forward position of troops); "they attacked the enemys line"
- a mark that is long relative to its width; "He drew a line on the chart"
- a spatial location defined by a real or imaginary unidimensional extent
- in games or sports; a mark indicating positions or bounds of the playing area
- persuasive but insincere talk that is usually intended to deceive or impress; "`let me show you my etchings is a rather worn line"; "he has a smooth line but I didnt fall for it"; "that salesman must have practiced his fast line of talk"
- text consisting of a row of words written across a page or computer screen; "the letter consisted of three short lines"; "there are six lines in every stanza"
- be in line with; form a line along; "trees line the riverbank" (同)run along
- cover the interior of; "line the gloves"; "line a chimney"
- fill plentifully; "line ones pockets"
PrepTutorEJDIC
- 『線』,筋,けい / (色・縫い目などの)『線』,しま;(顔・手などの)しわ(wrinkle) / (物・人の)『列』,行列(row) / 『綱』,糸,針金 / 電線,電話線,電信線 / (文章の)『行』;(詩の)『行』 / 《しばしばa~》《話》『短い手紙』(note) / 《複数形で》輪郭,外形(outline) / 境界線(boundary);限界,限度(limit) / (鉄道・バスなどの)路線;航路,空路 / 《複数形で》せりふ / 進路,道順(course);(考えなどの)筋道,方針 / 《しばしばone's~》(活動の)分野,方面;特意 / 家系,血統,血筋 / 在庫商品,仕入れ品 / 導管,パイプライン / 《しばしば複数形で》戦線,防御線 / …‘に'『線を引く』,筋(しま,しわ)をつける / …‘に'『沿って並ぶ;』(…を)…‘に'沿って並べる《+『名』+『with』+『名』》
- (材料で)〈着物など〉‘に'裏を付ける《+『名』『with』+『名』》 / (…で)…‘を'満たす,(…を)…‘に'詰め込む《+『名』+『with』+『名』》
UpToDate Contents
全文を閲覧するには購読必要です。 To read the full text you will need to subscribe.
Related Links
- 散在反復配列:隣り合わず散在する配列。レトロトランスポゾンに由来すると考えられて いる。長さによりLINEおよびSINEに分けられ、ヒトではLINEとして「LINE-1」、SINE として「Alu配列」と呼ばれる特定の配列が多い。 LINE(Long INterspersed Elements: 長鎖 ...
- ひとつめは、主にトランスポゾン(転移配列)由来の配列で、自身のコピーをゲノムの至る 所に挿入することによりヒト進化の過程でその数を増幅してきた配列です。これらの トランスポゾン由来配列はヒトゲノムの約45%を占めます。私達はその中のLINE1という ...
Related Pictures
★リンクテーブル★
[★]
- 英
- long interspersed nucleotide element、long interspersed nuclear element、LINE
- 関
- 長い散在反復配列、長い散在性反復配列、LINE-1配列、長鎖散在反復配列、L1配列
[★]
- 英
- L1 element
- 関
- 長散在型反復配列、LINE-1配列、L1領域
[★]
LINE-1配列
- 関
- L1 element、long interspersed nucleotide element
[★]
- 英
- 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);
配列の要素表示
[★]
- 日
- 長い散在反復配列、長散在型反復配列、長い散在性反復配列、ライン、広範囲散在反復配列
- 英
- long interspersed nuclear element, long interspersed nucleotide element, long interspersed element, long interspersed repetitive elements, LINEs, long interspersed repeat sequences
- 関
- レトロトランスポゾン
- quoted from http://en.wikipedia.org/wiki/Long_interspersed_nucleotide_elements#LINEs
- Long interspersed nuclear elements[8] are a group of genetic elements that are found in large numbers in eukaryotic genomes. They are transcribed (or are the evolutionary remains of what was once transcribed) to an RNA using an RNA polymerase II promoter that resides inside the LINE. LINEs code for the enzyme reverse transcriptase, and many LINEs also code for an endonuclease (e.g. RNase H). The reverse transcriptase has a higher specificity for the LINE RNA than other RNA, and makes a DNA copy of the RNA that can be integrated into the genome at a new site.
- The 5' UTR contains the promoter sequence, while the 3' UTR contains a polyadenylation signal (AATAAA) and a poly-A tail.[10] Because LINEs move by copying themselves (instead of moving, like transposons do), they enlarge the genome. The human genome, for example, contains about 20,000-40,000 LINEs, which is roughly 21% of the genome.
[★]
- 関
- lineage、lining、pedigree、stock、strain、string、undercoat
[★]
- 英
- row、tier、train
- 関
- 作条、訓練、層、連、段
[★]
LINE
- 関
- See Long interspersed repeat sequences