チケット #47 (reopened 仕様) — at バージョン 21
検索 WebAPI 機能の仕様
報告者: | h-morita | 担当者: | yy |
---|---|---|---|
優先度: | 各マイルストーンで解決する | マイルストーン: | Iterate5(1/10) |
コンポーネント: | OReFiL | バージョン: | |
キーワード: | 関係者: | ||
GanttChart表示: | OFF | 依存TaskNo: | |
開始予定日: | YYYY/MM/DD | 終了予定日: | YYYY/MM/DD |
説明 (最終更新者: h-morita) (diff)
検索 WebAPI 機能の仕様
インタフェース
SOAP
- WSDL
- /search/service.wsdl
- エントリポイント
- /search/api
- SOAPAction
- /search/api/GetResourceInfoByQueryTerm
- パラメータ仕様
パラメータ名 | パラメータ内容 | 必須/オプション | デフォルト値 | 設定可能な値 |
expression | 検索文字列 | 必須 | ー | IndriRunQuery が対応可能な式 |
max_results | 最大検索件数 | 必須 | ー | 1 〜 1000 |
order | ソート方法 | 必須 | ー | relevance もしくは date |
enable_hide_unfetched | 404ページの表示/非表示 | 必須 | ー | on もしくは off |
enable_relevance_feedback | 疑似関連フィードバック | 必須 | ー | on もしくは off |
- エラー仕様
- できうる限り SOAP エラー仕様に従ってエラーを返す
- パラメータが不足している場合内部サーバエラーで処理される場合がある
REST
- URI
- /search.xml
- パラメータ仕様
- GET パラメータもしくは POST パラメータとして付与
パラメータ名 | パラメータ内容 | 必須/オプション | デフォルト値 | 設定可能な値 |
query | 検索文字列 | 必須 | ー | IndriRunQuery が対応可能な式 |
count | 最大検索件数 | オプション | 100 | 1 〜 1000 |
sort_by | ソート方法 | オプション | relevance | relevance もしくは date |
hide_unfetched | 404ページの表示/非表示 | オプション | on | on もしくは off |
feedback | 疑似関連フィードバック | オプション | off | on もしくは off |
- エラー仕様
- 基本的には HTTP ステータスをもとにエラーハンドリングを行うこと
- ユーザパラメータにエラーがある場合は出来うる限りそのエラー内容を XML で返す
- エラー内容の仕様
- errors: エラーリスト
- error: エラー
- http_status_code: HTTP ステータスコード
- code: アプリケーションエラーコード
- name: エラー名
- message: エラーメッセージ
- error: エラー
- errors: エラーリスト
- エラーサンプル
<?xml version="1.0" encoding="UTF-8"?> <errors> <error> <http_status_code>400</http_status_code> <code>40003</code> <name>Orefil::InvalidCountError</name> <message>Set integer of 1 or more to `Max Results` value.</message> </error> </errors>
- エラー内容の仕様
レスポンス仕様
- Result_Set: 結果セット ( REST の場合は result_set )
- query: デフォルト値反映後の問い合わせ内容
- expression: 検索文字列パラメータ
- option: オプション系パラメータ
- max_results: 出力最大件数
- order: ソート方法
- enable_hide_unfetched: 404なオンラインリソース結果を表示するかどうか
- enable_relevance_feedback: 疑似フィードバックの有無
- option: オプション系パラメータ
- expression: 検索文字列パラメータ
- status: 実行結果ステータス ( SOAP のみに存在 )
- code: ステータスコード
- name: ステータス名
- message: ステータスメッセージ
- results: 検索結果リスト
- item: 検索結果単体 ( REST の場合は result )
- rank: 検索一致ランク
- title: オンラインリソースタイトル
- snippet: スニペット
- mesh_term_list: MeSH リスト
- item: MeSH 単体 ( REST の場合は mesh_term )
- url: オンラインリソース URL
- pages: 参照リンク検索 URL リスト
- google: google による参照リンク検索 URL
- altavista: altavista による参照リンク検索 URL
- papers: 参照文献検索 URI リスト
- biomed_central: BioMed Central による参照文献検索 URL
- scirus: scirus による参照文献検索 URL
- highwire_press: high wire press による参照文献検索 URL
- google_scholar: google scholar による参照文献検索 URL
- pmid_list: 参照 PubMed の PMID リスト
- item: 参照 PubMed の pmid ( REST の場合は pmid )
- item: 検索結果単体 ( REST の場合は result )
- query: デフォルト値反映後の問い合わせ内容
リクエスト/レスポンスサンプル
以下のクエリで Web API を呼び出すリクエストとその結果のレスポンスを SOAP / REST の二つでサンプルとして示す。
- リクエスト内容
- 検索文字列 : #filreq(DNA.majr #combine(genome))
- クエリオプション
- 最大結果件数 : 3 件
- ソート方法 : 関連度順
- 404ページの表示/ 非表示 : 表示
- 疑似関連フィードバック : 無効
SOAP
- リクエスト
<?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Body> <m:GetResourceInfoByQueryTerm xmlns:m="urn:ActionWebService"> <expression xsi:type="xsd:string">#filreq(DNA.majr #combine(genome))</expression> <max_results xsi:type="xsd:int">3</max_results> <order xsi:type="xsd:string">relevance</order> <enable_hide_unfetched xsi:type="xsd:boolean">true</enable_hide_unfetched> <enable_relevance_feedback xsi:type="xsd:boolean">false</enable_relevance_feedback> </m:GetResourceInfoByQueryTerm> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
- レスポンス
<?xml version="1.0" encoding="UTF-8" ?> <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:GetResourceInfoByQueryTermResponse xmlns:n1="urn:ActionWebService" env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <return xsi:type="n1:Retrieve..ResultSet"> <status xsi:type="n1:Retrieve..Status"> <message xsi:type="xsd:string">success.</message> <name xsi:type="xsd:string">Orefil::Success</name> <code xsi:type="xsd:string">20000</code> </status> <results n2:arrayType="n1:Retrieve..Result[3]" xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="n2:Array"> <item> <pmid_list n2:arrayType="xsd:string[18]" xsi:type="n2:Array"> <item>18086701</item> <item href="#id91473849300"></item> <item>17984227</item> <item>17151077</item> <item>17142222</item> <item>16500937</item> <item>16372332</item> <item>16381938</item> <item>16888352</item> <item>16722777</item> <item href="#id91473833240"></item> <item>16888348</item> <item>15608236</item> <item>15554057</item> <item href="#id91473827280"></item> <item>12519945</item> <item>12045153</item> <item>11932250</item> </pmid_list> <snippet xsi:type="xsd:string">...reaction (PCR)-based methods, candidate genes are usually screened in their entirety, exon by exon. <strong>Genomic</strong> resources (i.e. www.ncbi.nih.gov, www.ensembl.org, and <strong>genome</strong>.ucsc.edu) largely support this paradigm for mutation screening by making it easy to view...by making it easy to view and access sequence data associated with genes in their <strong>genomic</strong> context. However, the administrative burden of conducting mutation screening in potentially hundreds of genes and...</snippet> <papers xsi:type="n1:Retrieve..Papers"> <highwire_press xsi:type="xsd:string">http://highwire.org/cgi/searchresults?fulltext=genome.ucsc.edu%2F&amp;andorexactfulltext=and&amp;author1=&amp;pubdate_year=&amp;volume=&amp;firstpage=&amp;src=hw&amp;searchsubmit=redo&amp;resourcetype=1&amp;search=Search&amp;fmonth=Jan&amp;fyear=1844&amp;tmonth=Dec&amp;tyear=2007&amp;fdatedef=1+January+1844&amp;tdatedef=31+Dec+2007</highwire_press> <scirus xsi:type="xsd:string">http://www.scirus.com/srsapp/search?q=genome.ucsc.edu%2F&amp;ds=jnl&amp;g=s&amp;t=all</scirus> <biomed_central xsi:type="xsd:string">http://www.biomedcentral.com/search/results.asp?txtSearch1=genome.ucsc.edu%2F&amp;chkBMCJournals=true&amp;chkCurrentOpinion=true&amp;drpFromDate=&amp;drpToDate=&amp;chkNSP=true&amp;drpAddedInLast=&amp;drpOrderBy=by+date&amp;drpPerPage=20&amp;drpAbstract=no+abstract&amp;strTempString=&amp;strSearchBoxType=bmc_boolean_results&amp;Search.x=10&amp;jou_id=&amp;Search.x=0&amp;Search.y=0&amp;Search=Search</biomed_central> <google_scholar xsi:type="xsd:string">http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=genome.ucsc.edu%2F&amp;btnG=Search</google_scholar> </papers> <title xsi:type="xsd:string">UCSC Genome Browser Home</title> <rank xsi:type="xsd:int">1</rank> <pages xsi:type="n1:Retrieve..Pages"> <google xsi:type="xsd:string">http://www.google.com/search?hl=en&amp;q=link%3ahttp%3A%2F%2Fgenome.ucsc.edu%2F&amp;btnG=Google+Search</google> <altavista xsi:type="xsd:string">http://www.altavista.com/web/results?itag=ody&amp;q=link:http%3A%2F%2Fgenome.ucsc.edu%2F&amp;kgs=0&amp;kls=1</altavista> </pages> <url xsi:type="xsd:string">http://genome.ucsc.edu/</url> <mesh_term_list n2:arrayType="xsd:string[28]" xsi:type="n2:Array"> <item>Abnormalities, Multiple</item> <item>Carbamoyl-Phosphate Synthase I Deficiency Disease</item> <item>Chickens</item> <item>Chromosome Deletion</item> <item>Chromosome Mapping</item> <item>Chromosomes, Human, Pair 2</item> <item>Computational Biology</item> <item>DNA Primers</item> <item>Database Management Systems</item> <item>Databases, Genetic</item> <item>Databases, Nucleic Acid</item> <item>Databases, Protein</item> <item>Exons</item> <item>Genome</item> <item>Genome, Human</item> <item>Genomics</item> <item>Information Storage and Retrieval</item> <item>Internet</item> <item>Linkage (Genetics)</item> <item>Microsatellite Repeats</item> <item>Polymorphism, Single Nucleotide</item> <item>Proteins</item> <item>Proteome</item> <item>Proteomics</item> <item>RNA, Messenger</item> <item>Sequence Alignment</item> <item>Software</item> <item>Zebrafish</item> </mesh_term_list> </item> <item> <pmid_list n2:arrayType="xsd:string[2]" xsi:type="n2:Array"> <item>16108715</item> <item>14681485</item> </pmid_list> <snippet xsi:type="xsd:string">Finding anchors for <strong>genomic</strong> sequence comparison. Recent sequencing of the human and other mammalian <strong>genomes</strong> has brought about the necessity to align them, to identify and characterize their commonalities and...Algorithms Amino Acid Motifs Chromosome Mapping Sequence Analysis, DNA User-Computer Interface Databases, Genetic Mice <strong>Genome</strong> Information Storage and Retrieval Internet Rats Computational Biology Software Models, Genetic Animals Oligonucleotide Array Sequence Analysis Databases, Genetic <strong>Genome</strong> Gene Expression Profiling Sequence Alignment Software Chromosome Mapping Oligonucleotide Array Sequence Analysis User-Computer Interface Sequence Analysis, ... Nucleic Acid Hybridization Microarray Analysis Genetic Techniques Information Storage and Retrieval Sequence Analysis Chemistry, Analytical...</snippet> <papers xsi:type="n1:Retrieve..Papers"> <highwire_press xsi:type="xsd:string">http://highwire.org/cgi/searchresults?fulltext=www.genome.ucsc.edu%2F&amp;andorexactfulltext=and&amp;author1=&amp;pubdate_year=&amp;volume=&amp;firstpage=&amp;src=hw&amp;searchsubmit=redo&amp;resourcetype=1&amp;search=Search&amp;fmonth=Jan&amp;fyear=1844&amp;tmonth=Dec&amp;tyear=2007&amp;fdatedef=1+January+1844&amp;tdatedef=31+Dec+2007</highwire_press> <scirus xsi:type="xsd:string">http://www.scirus.com/srsapp/search?q=www.genome.ucsc.edu%2F&amp;ds=jnl&amp;g=s&amp;t=all</scirus> <biomed_central xsi:type="xsd:string">http://www.biomedcentral.com/search/results.asp?txtSearch1=www.genome.ucsc.edu%2F&amp;chkBMCJournals=true&amp;chkCurrentOpinion=true&amp;drpFromDate=&amp;drpToDate=&amp;chkNSP=true&amp;drpAddedInLast=&amp;drpOrderBy=by+date&amp;drpPerPage=20&amp;drpAbstract=no+abstract&amp;strTempString=&amp;strSearchBoxType=bmc_boolean_results&amp;Search.x=10&amp;jou_id=&amp;Search.x=0&amp;Search.y=0&amp;Search=Search</biomed_central> <google_scholar xsi:type="xsd:string">http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=www.genome.ucsc.edu%2F&amp;btnG=Search</google_scholar> </papers> <title xsi:type="xsd:string">UCSC Genome Browser Home</title> <rank xsi:type="xsd:int">2</rank> <pages xsi:type="n1:Retrieve..Pages"> <google xsi:type="xsd:string">http://www.google.com/search?hl=en&amp;q=link%3ahttp%3A%2F%2Fwww.genome.ucsc.edu%2F&amp;btnG=Google+Search</google> <altavista xsi:type="xsd:string">http://www.altavista.com/web/results?itag=ody&amp;q=link:http%3A%2F%2Fwww.genome.ucsc.edu%2F&amp;kgs=0&amp;kls=1</altavista> </pages> <url xsi:type="xsd:string">http://www.genome.ucsc.edu/</url> <mesh_term_list n2:arrayType="xsd:string[9]" xsi:type="n2:Array"> <item>Chromosome Mapping</item> <item>Databases, Genetic</item> <item>Gene Expression Profiling</item> <item>Genome</item> <item>Oligonucleotide Array Sequence Analysis</item> <item>Sequence Alignment</item> <item>Sequence Analysis, DNA</item> <item>Software</item> <item>User-Computer Interface</item> </mesh_term_list> </item> <item> <pmid_list n2:arrayType="xsd:string[21]" xsi:type="n2:Array"> <item>18000006</item> <item href="#id91473849300"></item> <item>17537812</item> <item>17148474</item> <item>16729214</item> <item>16381931</item> <item href="#id91473833240"></item> <item>15608235</item> <item>16103655</item> <item>16610137</item> <item href="#id91473827280"></item> <item>15189572</item> <item>15123591</item> <item>15123595</item> <item>15123590</item> <item>15078858</item> <item>14681459</item> <item>12519943</item> <item>11890680</item> <item>11752248</item> <item>12385995</item> </pmid_list> <snippet xsi:type="xsd:string">...reaction (PCR)-based methods, candidate genes are usually screened in their entirety, exon by exon. <strong>Genomic</strong> resources (i.e. www.ncbi.nih.gov, www.ensembl.org, and <strong>genome</strong>.ucsc.edu) largely support this paradigm for mutation screening by making it easy to view...by making it easy to view and access sequence data associated with genes in their <strong>genomic</strong> context. However, the administrative burden of conducting mutation screening in potentially hundreds of genes and...</snippet> <papers xsi:type="n1:Retrieve..Papers"> <highwire_press xsi:type="xsd:string">http://highwire.org/cgi/searchresults?fulltext=www.ensembl.org%2Findex.html&amp;andorexactfulltext=and&amp;author1=&amp;pubdate_year=&amp;volume=&amp;firstpage=&amp;src=hw&amp;searchsubmit=redo&amp;resourcetype=1&amp;search=Search&amp;fmonth=Jan&amp;fyear=1844&amp;tmonth=Dec&amp;tyear=2007&amp;fdatedef=1+January+1844&amp;tdatedef=31+Dec+2007</highwire_press> <scirus xsi:type="xsd:string">http://www.scirus.com/srsapp/search?q=www.ensembl.org%2Findex.html&amp;ds=jnl&amp;g=s&amp;t=all</scirus> <biomed_central xsi:type="xsd:string">http://www.biomedcentral.com/search/results.asp?txtSearch1=www.ensembl.org%2Findex.html&amp;chkBMCJournals=true&amp;chkCurrentOpinion=true&amp;drpFromDate=&amp;drpToDate=&amp;chkNSP=true&amp;drpAddedInLast=&amp;drpOrderBy=by+date&amp;drpPerPage=20&amp;drpAbstract=no+abstract&amp;strTempString=&amp;strSearchBoxType=bmc_boolean_results&amp;Search.x=10&amp;jou_id=&amp;Search.x=0&amp;Search.y=0&amp;Search=Search</biomed_central> <google_scholar xsi:type="xsd:string">http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=www.ensembl.org%2Findex.html&amp;btnG=Search</google_scholar> </papers> <title xsi:type="xsd:string">Ensembl Genome Browser</title> <rank xsi:type="xsd:int">3</rank> <pages xsi:type="n1:Retrieve..Pages"> <google xsi:type="xsd:string">http://www.google.com/search?hl=en&amp;q=link%3ahttp%3A%2F%2Fwww.ensembl.org%2Findex.html&amp;btnG=Google+Search</google> <altavista xsi:type="xsd:string">http://www.altavista.com/web/results?itag=ody&amp;q=link:http%3A%2F%2Fwww.ensembl.org%2Findex.html&amp;kgs=0&amp;kls=1</altavista> </pages> <url xsi:type="xsd:string">http://www.ensembl.org/index.html</url> <mesh_term_list n2:arrayType="xsd:string[43]" xsi:type="n2:Array"> <item>ADP-Ribosylation Factors</item> <item>Abnormalities, Multiple</item> <item>Alternative Splicing</item> <item>Automation</item> <item>Carbamoyl-Phosphate Synthase I Deficiency Disease</item> <item>Cardiomyopathy, Dilated</item> <item>Chickens</item> <item>Chromosome Deletion</item> <item>Chromosome Mapping</item> <item>Chromosomes, Human, Pair 2</item> <item>Computational Biology</item> <item>DNA Primers</item> <item>Database Management Systems</item> <item>Databases, Factual</item> <item>Databases, Genetic</item> <item>Databases, Nucleic Acid</item> <item>Dog Diseases</item> <item>Exons</item> <item>Expressed Sequence Tags</item> <item>GTP Phosphohydrolases</item> <item>Genes</item> <item>Genetic Techniques</item> <item>Genome</item> <item>Genome, Human</item> <item>Genomics</item> <item>Glycosyltransferases</item> <item>Information Dissemination</item> <item>Information Storage and Retrieval</item> <item>Internet</item> <item>Membrane Proteins</item> <item>Microsatellite Repeats</item> <item>Models, Biological</item> <item>Nucleic Acid Hybridization</item> <item>Oligonucleotide Array Sequence Analysis</item> <item>Polymorphism, Single Nucleotide</item> <item>Promoter Regions (Genetics)</item> <item>Quantitative Trait Loci</item> <item>Regulatory Sequences, Nucleic Acid</item> <item>Sarcoglycans</item> <item>Software</item> <item>Systems Biology</item> <item>Zebrafish</item> <item>Zebrafish Proteins</item> </mesh_term_list> </item> </results> <query xsi:type="n1:Retrieve..Query"> <expression xsi:type="xsd:string">#filreq(DNA.majr #combine(genome))</expression> <option xsi:type="n1:Retrieve..Option"> <enable_relevance_feedback xsi:type="xsd:boolean">false</enable_relevance_feedback> <order xsi:type="xsd:string">relevance</order> <enable_hide_unfetched xsi:type="xsd:boolean">true</enable_hide_unfetched> <max_results xsi:type="xsd:int">3</max_results> </option> </query> </return> </n1:GetResourceInfoByQueryTermResponse> <item id="id91473849300" xsi:type="xsd:string" env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">18172923</item> <item id="id91473833240" xsi:type="xsd:string" env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">16888346</item> <item id="id91473827280" xsi:type="xsd:string" env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">15216554</item> </env:Body> </env:Envelope>
REST
- リクエスト
/search.xml?query=%23filreq%28DNA.majr+%23combine%28genome%29%29&count=3&sort_by=relevance&hide_unfetched=on
- レスポンス
<?xml version="1.0" encoding="UTF-8"?> <result_set> <query> <expression>#filreq(DNA.majr #combine(genome))</expression> <option> <max_results>3</max_results> <order>relevance</order> <enable_hide_unfetched>true</enable_hide_unfetched> <enable_relevance_feedback>false</enable_relevance_feedback> </option> <last_index_date>Mon Jan 28 06:40:04 +0900 2008</last_index_date> </query> <results> <result> <rank>1</rank> <title>UCSC Genome Browser Home</title> <snippet> ...reaction (PCR)-based methods, candidate genes are usually screened in their entirety, exon by exon. <strong>Genomic</strong> resources (i.e. www.ncbi.nih.gov, www.ensembl.org, and <strong>genome</strong>.ucsc.edu) largely support this paradigm for mutation screening by making it easy to view...by making it easy to view and access sequence data associated with genes in their <strong>genomic</strong> context. However, the administrative burden of conducting mutation screening in potentially hundreds of genes and... </snippet> <mesh_term_list> <mesh_term>Abnormalities, Multiple</mesh_term> <mesh_term>Carbamoyl-Phosphate Synthase I Deficiency Disease</mesh_term> <mesh_term>Chickens</mesh_term> <mesh_term>Chromosome Deletion</mesh_term> <mesh_term>Chromosome Mapping</mesh_term> <mesh_term>Chromosomes, Human, Pair 2</mesh_term> <mesh_term>Computational Biology</mesh_term> <mesh_term>DNA Primers</mesh_term> <mesh_term>Database Management Systems</mesh_term> <mesh_term>Databases, Genetic</mesh_term> <mesh_term>Databases, Nucleic Acid</mesh_term> <mesh_term>Databases, Protein</mesh_term> <mesh_term>Exons</mesh_term> <mesh_term>Genome</mesh_term> <mesh_term>Genome, Human</mesh_term> <mesh_term>Genomics</mesh_term> <mesh_term>Information Storage and Retrieval</mesh_term> <mesh_term>Internet</mesh_term> <mesh_term>Linkage (Genetics)</mesh_term> <mesh_term>Microsatellite Repeats</mesh_term> <mesh_term>Polymorphism, Single Nucleotide</mesh_term> <mesh_term>Proteins</mesh_term> <mesh_term>Proteome</mesh_term> <mesh_term>Proteomics</mesh_term> <mesh_term>RNA, Messenger</mesh_term> <mesh_term>Sequence Alignment</mesh_term> <mesh_term>Software</mesh_term> <mesh_term>Zebrafish</mesh_term> </mesh_term_list> <url>http://genome.ucsc.edu/</url> <pages> <google> http://www.google.com/search?hl=en&q=link%3ahttp%3A%2F%2Fgenome.ucsc.edu%2F&btnG=Google+Search </google> <altavista> http://www.altavista.com/web/results?itag=ody&q=link:http%3A%2F%2Fgenome.ucsc.edu%2F&kgs=0&kls=1 </altavista> </pages> <papers> <biomed_central> http://www.biomedcentral.com/search/results.asp?txtSearch1=genome.ucsc.edu%2F&chkBMCJournals=true&chkCurrentOpinion=true&drpFromDate=&drpToDate=&chkNSP=true&drpAddedInLast=&drpOrderBy=by+date&drpPerPage=20&drpAbstract=no+abstract&strTempString=&strSearchBoxType=bmc_boolean_results&Search.x=10&jou_id=&Search.x=0&Search.y=0&Search=Search </biomed_central> <scirus> http://www.scirus.com/srsapp/search?q=genome.ucsc.edu%2F&ds=jnl&g=s&t=all </scirus> <highwire_press> http://highwire.org/cgi/searchresults?fulltext=genome.ucsc.edu%2F&andorexactfulltext=and&author1=&pubdate_year=&volume=&firstpage=&src=hw&searchsubmit=redo&resourcetype=1&search=Search&fmonth=Jan&fyear=1844&tmonth=Dec&tyear=2007&fdatedef=1+January+1844&tdatedef=31+Dec+2007 </highwire_press> <google_scholar> http://scholar.google.com/scholar?hl=en&lr=&q=genome.ucsc.edu%2F&btnG=Search </google_scholar> </papers> <pmid_list> <pmid>18086701</pmid> <pmid>18172923</pmid> <pmid>17984227</pmid> <pmid>17151077</pmid> <pmid>17142222</pmid> <pmid>16500937</pmid> <pmid>16372332</pmid> <pmid>16381938</pmid> <pmid>16888352</pmid> <pmid>16722777</pmid> <pmid>16888346</pmid> <pmid>16888348</pmid> <pmid>15608236</pmid> <pmid>15554057</pmid> <pmid>15216554</pmid> <pmid>12519945</pmid> <pmid>12045153</pmid> <pmid>11932250</pmid> </pmid_list> </result> <result> <rank>2</rank> <title>UCSC Genome Browser Home</title> <snippet> Finding anchors for <strong>genomic</strong> sequence comparison. Recent sequencing of the human and other mammalian <strong>genomes</strong> has brought about the necessity to align them, to identify and characterize their commonalities and...Algorithms Amino Acid Motifs Chromosome Mapping Sequence Analysis, DNA User-Computer Interface Databases, Genetic Mice <strong>Genome</strong> Information Storage and Retrieval Internet Rats Computational Biology Software Models, Genetic Animals Oligonucleotide Array Sequence Analysis Databases, Genetic <strong>Genome</strong> Gene Expression Profiling Sequence Alignment Software Chromosome Mapping Oligonucleotide Array Sequence Analysis User-Computer Interface Sequence Analysis, ... Nucleic Acid Hybridization Microarray Analysis Genetic Techniques Information Storage and Retrieval Sequence Analysis Chemistry, Analytical... </snippet> <mesh_term_list> <mesh_term>Chromosome Mapping</mesh_term> <mesh_term>Databases, Genetic</mesh_term> <mesh_term>Gene Expression Profiling</mesh_term> <mesh_term>Genome</mesh_term> <mesh_term>Oligonucleotide Array Sequence Analysis</mesh_term> <mesh_term>Sequence Alignment</mesh_term> <mesh_term>Sequence Analysis, DNA</mesh_term> <mesh_term>Software</mesh_term> <mesh_term>User-Computer Interface</mesh_term> </mesh_term_list> <url>http://www.genome.ucsc.edu/</url> <pages> <google> http://www.google.com/search?hl=en&q=link%3ahttp%3A%2F%2Fwww.genome.ucsc.edu%2F&btnG=Google+Search </google> <altavista> http://www.altavista.com/web/results?itag=ody&q=link:http%3A%2F%2Fwww.genome.ucsc.edu%2F&kgs=0&kls=1 </altavista> </pages> <papers> <biomed_central> http://www.biomedcentral.com/search/results.asp?txtSearch1=www.genome.ucsc.edu%2F&chkBMCJournals=true&chkCurrentOpinion=true&drpFromDate=&drpToDate=&chkNSP=true&drpAddedInLast=&drpOrderBy=by+date&drpPerPage=20&drpAbstract=no+abstract&strTempString=&strSearchBoxType=bmc_boolean_results&Search.x=10&jou_id=&Search.x=0&Search.y=0&Search=Search </biomed_central> <scirus> http://www.scirus.com/srsapp/search?q=www.genome.ucsc.edu%2F&ds=jnl&g=s&t=all </scirus> <highwire_press> http://highwire.org/cgi/searchresults?fulltext=www.genome.ucsc.edu%2F&andorexactfulltext=and&author1=&pubdate_year=&volume=&firstpage=&src=hw&searchsubmit=redo&resourcetype=1&search=Search&fmonth=Jan&fyear=1844&tmonth=Dec&tyear=2007&fdatedef=1+January+1844&tdatedef=31+Dec+2007 </highwire_press> <google_scholar> http://scholar.google.com/scholar?hl=en&lr=&q=www.genome.ucsc.edu%2F&btnG=Search </google_scholar> </papers> <pmid_list> <pmid>16108715</pmid> <pmid>14681485</pmid> </pmid_list> </result> <result> <rank>3</rank> <title>Ensembl Genome Browser</title> <snippet> ...reaction (PCR)-based methods, candidate genes are usually screened in their entirety, exon by exon. <strong>Genomic</strong> resources (i.e. www.ncbi.nih.gov, www.ensembl.org, and <strong>genome</strong>.ucsc.edu) largely support this paradigm for mutation screening by making it easy to view...by making it easy to view and access sequence data associated with genes in their <strong>genomic</strong> context. However, the administrative burden of conducting mutation screening in potentially hundreds of genes and... </snippet> <mesh_term_list> <mesh_term>ADP-Ribosylation Factors</mesh_term> <mesh_term>Abnormalities, Multiple</mesh_term> <mesh_term>Alternative Splicing</mesh_term> <mesh_term>Automation</mesh_term> <mesh_term>Carbamoyl-Phosphate Synthase I Deficiency Disease</mesh_term> <mesh_term>Cardiomyopathy, Dilated</mesh_term> <mesh_term>Chickens</mesh_term> <mesh_term>Chromosome Deletion</mesh_term> <mesh_term>Chromosome Mapping</mesh_term> <mesh_term>Chromosomes, Human, Pair 2</mesh_term> <mesh_term>Computational Biology</mesh_term> <mesh_term>DNA Primers</mesh_term> <mesh_term>Database Management Systems</mesh_term> <mesh_term>Databases, Factual</mesh_term> <mesh_term>Databases, Genetic</mesh_term> <mesh_term>Databases, Nucleic Acid</mesh_term> <mesh_term>Dog Diseases</mesh_term> <mesh_term>Exons</mesh_term> <mesh_term>Expressed Sequence Tags</mesh_term> <mesh_term>GTP Phosphohydrolases</mesh_term> <mesh_term>Genes</mesh_term> <mesh_term>Genetic Techniques</mesh_term> <mesh_term>Genome</mesh_term> <mesh_term>Genome, Human</mesh_term> <mesh_term>Genomics</mesh_term> <mesh_term>Glycosyltransferases</mesh_term> <mesh_term>Information Dissemination</mesh_term> <mesh_term>Information Storage and Retrieval</mesh_term> <mesh_term>Internet</mesh_term> <mesh_term>Membrane Proteins</mesh_term> <mesh_term>Microsatellite Repeats</mesh_term> <mesh_term>Models, Biological</mesh_term> <mesh_term>Nucleic Acid Hybridization</mesh_term> <mesh_term>Oligonucleotide Array Sequence Analysis</mesh_term> <mesh_term>Polymorphism, Single Nucleotide</mesh_term> <mesh_term>Promoter Regions (Genetics)</mesh_term> <mesh_term>Quantitative Trait Loci</mesh_term> <mesh_term>Regulatory Sequences, Nucleic Acid</mesh_term> <mesh_term>Sarcoglycans</mesh_term> <mesh_term>Software</mesh_term> <mesh_term>Systems Biology</mesh_term> <mesh_term>Zebrafish</mesh_term> <mesh_term>Zebrafish Proteins</mesh_term> </mesh_term_list> <url>http://www.ensembl.org/index.html</url> <pages> <google> http://www.google.com/search?hl=en&q=link%3ahttp%3A%2F%2Fwww.ensembl.org%2Findex.html&btnG=Google+Search </google> <altavista> http://www.altavista.com/web/results?itag=ody&q=link:http%3A%2F%2Fwww.ensembl.org%2Findex.html&kgs=0&kls=1 </altavista> </pages> <papers> <biomed_central> http://www.biomedcentral.com/search/results.asp?txtSearch1=www.ensembl.org%2Findex.html&chkBMCJournals=true&chkCurrentOpinion=true&drpFromDate=&drpToDate=&chkNSP=true&drpAddedInLast=&drpOrderBy=by+date&drpPerPage=20&drpAbstract=no+abstract&strTempString=&strSearchBoxType=bmc_boolean_results&Search.x=10&jou_id=&Search.x=0&Search.y=0&Search=Search </biomed_central> <scirus> http://www.scirus.com/srsapp/search?q=www.ensembl.org%2Findex.html&ds=jnl&g=s&t=all </scirus> <highwire_press> http://highwire.org/cgi/searchresults?fulltext=www.ensembl.org%2Findex.html&andorexactfulltext=and&author1=&pubdate_year=&volume=&firstpage=&src=hw&searchsubmit=redo&resourcetype=1&search=Search&fmonth=Jan&fyear=1844&tmonth=Dec&tyear=2007&fdatedef=1+January+1844&tdatedef=31+Dec+2007 </highwire_press> <google_scholar> http://scholar.google.com/scholar?hl=en&lr=&q=www.ensembl.org%2Findex.html&btnG=Search </google_scholar> </papers> <pmid_list> <pmid>18000006</pmid> <pmid>18172923</pmid> <pmid>17537812</pmid> <pmid>17148474</pmid> <pmid>16729214</pmid> <pmid>16381931</pmid> <pmid>16888346</pmid> <pmid>15608235</pmid> <pmid>16103655</pmid> <pmid>16610137</pmid> <pmid>15216554</pmid> <pmid>15189572</pmid> <pmid>15123591</pmid> <pmid>15123595</pmid> <pmid>15123590</pmid> <pmid>15078858</pmid> <pmid>14681459</pmid> <pmid>12519943</pmid> <pmid>11890680</pmid> <pmid>11752248</pmid> <pmid>12385995</pmid> </pmid_list> </result> </results> </result_set>
チケットの履歴
Note: チケットについてのヘルプは
TracTickets を参照
して下さい。