id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	include_gantt	dependencies	due_assign	due_close
47	検索 WebAPI 機能の仕様	h-morita	yy	"= 検索 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 ||
=== 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 ||
== レスポンス仕様 ==
 * Result_Set: 結果セット ( REST の場合は result_set )
  * query: デフォルト値反映後の問い合わせ内容
   * expression: 検索文字列パラメータ
    * option: オプション系パラメータ
     * max_result: 出力最大件数
     * order: ソート方法
     * enable_hide_unfetched: 404なオンラインリソース結果を表示するかどうか
     * enable_relevance_feedback: 疑似フィードバックの有無
  * status: 実行結果ステータス ( SOAP のみに存在 )
   * code: ステータスコード
   * name: ステータス名
   * message: ステータスメッセージ
  * results: 検索結果リスト
   * item: 検索結果単体 ( REST の場合は result )
    * rank: 検索一致ランク
    * title: オンラインリソースタイトル  
    * snippet: スニペット
    * mesh_list: MeSH リスト
     * item: MeSH 単体 ( REST の場合は mesh )
    * uri: オンラインリソース URI
    * pages: 参照リンク検索 URI リスト
     * google: google による参照リンク検索 URI
     * altavista: altavista による参照リンク検索 URI
    * papers: 参照文献検索 URI リスト
     * bio_med_central: BioMed Central による参照文献検索 URI
     * scirus: scirus による参照文献検索 URI
     * high_wire_press: high wire press による参照文献検索 URI
     * google_scholar: google scholar による参照文献検索 URI
    * pubmed: 参照 PubMed の PMID リスト
     * pmid: 参照 PubMed の pmid ( REST の場合は pmid )
== 結果サンプル == 
 * 以下のクエリで Web API を呼び出した結果のサンプル
  * 検索文字列 : #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"">
        <query xsi:type=""n1:Retrieve..Query"">
          <option xsi:type=""n1:Retrieve..Option"">
            <enable_relevance_feedback xsi:type=""xsd:boolean"">false</enable_relevance_feedback>
            <enable_hide_unfetched xsi:type=""xsd:boolean"">true</enable_hide_unfetched>
            <order xsi:type=""xsd:string"">relevance</order>
            <max_results xsi:type=""xsd:int"">3</max_results>
          </option>
          <expression xsi:type=""xsd:string"">#filreq(DNA.majr #combine(genome))</expression>
        </query>
        <status xsi:type=""n1:Retrieve..Status"">
          <name xsi:type=""xsd:string"">Orefil::Success</name>
          <message xsi:type=""xsd:string"">success.</message>
          <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>
            <pubmed n2:arrayType=""xsd:string[15]""
                xsi:type=""n2:Array"">
              <item>16888352</item>
              <item>16381938</item>
              <item>12045153</item>
              <item>15216554</item>
              <item>17151077</item>
              <item>16888348</item>
              <item>16372332</item>
              <item>11932250</item>
              <item>16722777</item>
              <item>12519945</item>
              <item>16500937</item>
              <item>17142222</item>
              <item>15554057</item>
              <item>15608236</item>
              <item>16888346</item>
            </pubmed>
            <snippet xsi:type=""xsd:string"">Comparative &lt;strong&gt;Genomic&lt;/strong&gt; Analysis Using the UCSC &lt;strong&gt;Genome&lt;/strong&gt; Browser. Comparative analysis of DNA sequence from multiple species can provide insights into the function...sequence from multiple species can provide insights into the function and evolutionary processes that shape &lt;strong&gt;genomes&lt;/strong&gt;. The University of California Santa Cruz (UCSC) &lt;strong&gt;Genome&lt;/strong&gt; Bioinformatics group has developed several tools and methodologies in its study of comparative genomics, many...</snippet>
            <papers xsi:type=""n1:Retrieve..Papers"">
              <scirus xsi:type=""xsd:string"">http://www.scirus.com/srsapp/search?q=genome.ucsc.edu%2F&amp;amp;ds=jnl&amp;amp;g=s&amp;amp;t=all</scirus>
              <bio_med_central xsi:type=""xsd:string"">http://www.biomedcentral.com/search/results.asp?txtSearch1=genome.ucsc.edu%2F&amp;amp;chkBMCJournals=true&amp;amp;chkCurrentOpinion=true&amp;amp;drpFromDate=&amp;amp;drpToDate=&amp;amp;chkNSP=true&amp;amp;drpAddedInLast=&amp;amp;drpOrderBy=by+date&amp;amp;drpPerPage=20&amp;amp;drpAbstract=no+abstract&amp;amp;strTempString=&amp;amp;strSearchBoxType=bmc_boolean_results&amp;amp;Search.x=10&amp;amp;jou_id=&amp;amp;Search.x=0&amp;amp;Search.y=0&amp;amp;Search=Search</bio_med_central>
              <google_scholar xsi:type=""xsd:string"">http://scholar.google.com/scholar?hl=en&amp;amp;lr=&amp;amp;q=genome.ucsc.edu%2F&amp;amp;btnG=Search</google_scholar>
              <high_wire_press xsi:type=""xsd:string"">http://highwire.org/cgi/searchresults?fulltext=genome.ucsc.edu%2F&amp;amp;andorexactfulltext=and&amp;amp;author1=&amp;amp;pubdate_year=&amp;amp;volume=&amp;amp;firstpage=&amp;amp;src=hw&amp;amp;searchsubmit=redo&amp;amp;resourcetype=1&amp;amp;search=Search&amp;amp;fmonth=Jan&amp;amp;fyear=1844&amp;amp;tmonth=Dec&amp;amp;tyear=2007&amp;amp;fdatedef=1+January+1844&amp;amp;tdatedef=31+Dec+2007</high_wire_press>
            </papers>
            <title xsi:type=""xsd:string"">UCSC Genome Browser Home</title>
            <pages xsi:type=""n1:Retrieve..Pages"">
              <google xsi:type=""xsd:string"">http://www.google.com/search?hl=en&amp;amp;q=link%3ahttp%3A%2F%2Fgenome.ucsc.edu%2F&amp;amp;btnG=Google+Search</google>
              <altavista xsi:type=""xsd:string"">http://www.altavista.com/web/results?itag=ody&amp;amp;q=link:http%3A%2F%2Fgenome.ucsc.edu%2F&amp;amp;kgs=0&amp;amp;kls=1</altavista>
            </pages>
            <uri xsi:type=""xsd:string"">http://genome.ucsc.edu/</uri>
            <rank xsi:type=""xsd:int"">1</rank>
            <mesh_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_list>
          </item>
          <item>
            <pubmed n2:arrayType=""xsd:string[2]""
                xsi:type=""n2:Array"">
              <item>14681485</item>
              <item>16108715</item>
            </pubmed>
            <snippet xsi:type=""xsd:string"">Finding anchors for &lt;strong&gt;genomic&lt;/strong&gt; sequence comparison . Recent sequencing of the human and other mammalian &lt;strong&gt;genomes&lt;/strong&gt; 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 &lt;strong&gt;Genome&lt;/strong&gt; Information Storage and Retrieval Internet Rats Computational Biology Software Models, Genetic Animals Oligonucleotide Array Sequence Analysis Databases, Genetic &lt;strong&gt;Genome&lt;/strong&gt; 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"">
              <scirus xsi:type=""xsd:string"">http://www.scirus.com/srsapp/search?q=www.genome.ucsc.edu%2F&amp;amp;ds=jnl&amp;amp;g=s&amp;amp;t=all</scirus>
              <bio_med_central xsi:type=""xsd:string"">http://www.biomedcentral.com/search/results.asp?txtSearch1=www.genome.ucsc.edu%2F&amp;amp;chkBMCJournals=true&amp;amp;chkCurrentOpinion=true&amp;amp;drpFromDate=&amp;amp;drpToDate=&amp;amp;chkNSP=true&amp;amp;drpAddedInLast=&amp;amp;drpOrderBy=by+date&amp;amp;drpPerPage=20&amp;amp;drpAbstract=no+abstract&amp;amp;strTempString=&amp;amp;strSearchBoxType=bmc_boolean_results&amp;amp;Search.x=10&amp;amp;jou_id=&amp;amp;Search.x=0&amp;amp;Search.y=0&amp;amp;Search=Search</bio_med_central>
              <google_scholar xsi:type=""xsd:string"">http://scholar.google.com/scholar?hl=en&amp;amp;lr=&amp;amp;q=www.genome.ucsc.edu%2F&amp;amp;btnG=Search</google_scholar>
              <high_wire_press xsi:type=""xsd:string"">http://highwire.org/cgi/searchresults?fulltext=www.genome.ucsc.edu%2F&amp;amp;andorexactfulltext=and&amp;amp;author1=&amp;amp;pubdate_year=&amp;amp;volume=&amp;amp;firstpage=&amp;amp;src=hw&amp;amp;searchsubmit=redo&amp;amp;resourcetype=1&amp;amp;search=Search&amp;amp;fmonth=Jan&amp;amp;fyear=1844&amp;amp;tmonth=Dec&amp;amp;tyear=2007&amp;amp;fdatedef=1+January+1844&amp;amp;tdatedef=31+Dec+2007</high_wire_press>
            </papers>
            <title xsi:type=""xsd:string"">UCSC Genome Browser Home</title>
            <pages xsi:type=""n1:Retrieve..Pages"">
              <google xsi:type=""xsd:string"">http://www.google.com/search?hl=en&amp;amp;q=link%3ahttp%3A%2F%2Fwww.genome.ucsc.edu%2F&amp;amp;btnG=Google+Search</google>
              <altavista xsi:type=""xsd:string"">http://www.altavista.com/web/results?itag=ody&amp;amp;q=link:http%3A%2F%2Fwww.genome.ucsc.edu%2F&amp;amp;kgs=0&amp;amp;kls=1</altavista>
            </pages>
            <uri xsi:type=""xsd:string"">http://www.genome.ucsc.edu/</uri>
            <rank xsi:type=""xsd:int"">2</rank>
            <mesh_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_list>
          </item>
          <item>
            <pubmed n2:arrayType=""xsd:string[1]""
                xsi:type=""n2:Array"">
              <item>15215396</item>
            </pubmed>
            <snippet xsi:type=""xsd:string"">IsoFinder : computational prediction of isochores in &lt;strong&gt;genome&lt;/strong&gt; sequences . Isochores are long &lt;strong&gt;genome&lt;/strong&gt; segments homogeneous in G+C . Here , we describe an algorithm ( IsoFinder ) running on the web...by each cut . This leads to the decomposition of a chromosome sequence into long homogeneous &lt;strong&gt;genome&lt;/strong&gt; regions ( LHGRs ) with well-defined mean G+C contents , each significantly different from the G...</snippet>
            <papers xsi:type=""n1:Retrieve..Papers"">
              <scirus xsi:type=""xsd:string"">http://www.scirus.com/srsapp/search?q=genome.cse.ucsc.edu%2F&amp;amp;ds=jnl&amp;amp;g=s&amp;amp;t=all</scirus>
              <bio_med_central xsi:type=""xsd:string"">http://www.biomedcentral.com/search/results.asp?txtSearch1=genome.cse.ucsc.edu%2F&amp;amp;chkBMCJournals=true&amp;amp;chkCurrentOpinion=true&amp;amp;drpFromDate=&amp;amp;drpToDate=&amp;amp;chkNSP=true&amp;amp;drpAddedInLast=&amp;amp;drpOrderBy=by+date&amp;amp;drpPerPage=20&amp;amp;drpAbstract=no+abstract&amp;amp;strTempString=&amp;amp;strSearchBoxType=bmc_boolean_results&amp;amp;Search.x=10&amp;amp;jou_id=&amp;amp;Search.x=0&amp;amp;Search.y=0&amp;amp;Search=Search</bio_med_central>
              <google_scholar xsi:type=""xsd:string"">http://scholar.google.com/scholar?hl=en&amp;amp;lr=&amp;amp;q=genome.cse.ucsc.edu%2F&amp;amp;btnG=Search</google_scholar>
              <high_wire_press xsi:type=""xsd:string"">http://highwire.org/cgi/searchresults?fulltext=genome.cse.ucsc.edu%2F&amp;amp;andorexactfulltext=and&amp;amp;author1=&amp;amp;pubdate_year=&amp;amp;volume=&amp;amp;firstpage=&amp;amp;src=hw&amp;amp;searchsubmit=redo&amp;amp;resourcetype=1&amp;amp;search=Search&amp;amp;fmonth=Jan&amp;amp;fyear=1844&amp;amp;tmonth=Dec&amp;amp;tyear=2007&amp;amp;fdatedef=1+January+1844&amp;amp;tdatedef=31+Dec+2007</high_wire_press>
            </papers>
            <title xsi:type=""xsd:string"">UCSC Genome Browser Home</title>
            <pages xsi:type=""n1:Retrieve..Pages"">
              <google xsi:type=""xsd:string"">http://www.google.com/search?hl=en&amp;amp;q=link%3ahttp%3A%2F%2Fgenome.cse.ucsc.edu%2F&amp;amp;btnG=Google+Search</google>
              <altavista xsi:type=""xsd:string"">http://www.altavista.com/web/results?itag=ody&amp;amp;q=link:http%3A%2F%2Fgenome.cse.ucsc.edu%2F&amp;amp;kgs=0&amp;amp;kls=1</altavista>
            </pages>
            <uri xsi:type=""xsd:string"">http://genome.cse.ucsc.edu/</uri>
            <rank xsi:type=""xsd:int"">3</rank>
            <mesh_list n2:arrayType=""xsd:string[4]""
                xsi:type=""n2:Array"">
              <item>Computational Biology</item>
              <item>Genomics</item>
              <item>Isochores</item>
              <item>Software</item>
            </mesh_list>
          </item>
        </results>
      </return>
    </n1:GetResourceInfoByQueryTermResponse>
  </env:Body>
</env:Envelope>
  }}}
=== REST ===
 * リクエスト
{{{
http://localhost:3000/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>Thu Jan 17 19:37:26 +0900 2008</last_index_date>
  </query>
  <results>
    <result>
      <rank>1</rank>
      <title>UCSC Genome Browser Home</title>
      <snippet>
        Comparative <strong>Genomic</strong> Analysis Using the UCSC <strong>Genome</strong> Browser. Comparative analysis of DNA sequence from multiple species can provide insights into the function...sequence from multiple species can provide insights into the function and evolutionary processes that shape <strong>genomes</strong>. The University of California Santa Cruz (UCSC) <strong>Genome</strong> Bioinformatics group has developed several tools and methodologies in its study of comparative genomics, many...
      </snippet>
      <mesh_list>
        <mesh>Abnormalities, Multiple</mesh>
        <mesh>Carbamoyl-Phosphate Synthase I Deficiency Disease</mesh>
        <mesh>Chickens</mesh>
        <mesh>Chromosome Deletion</mesh>
        <mesh>Chromosome Mapping</mesh>
        <mesh>Chromosomes, Human, Pair 2</mesh>
        <mesh>Computational Biology</mesh>
        <mesh>DNA Primers</mesh>
        <mesh>Database Management Systems</mesh>
        <mesh>Databases, Genetic</mesh>
        <mesh>Databases, Nucleic Acid</mesh>
        <mesh>Databases, Protein</mesh>
        <mesh>Exons</mesh>
        <mesh>Genome</mesh>
        <mesh>Genome, Human</mesh>
        <mesh>Genomics</mesh>
        <mesh>Information Storage and Retrieval</mesh>
        <mesh>Internet</mesh>
        <mesh>Linkage (Genetics)</mesh>
        <mesh>Microsatellite Repeats</mesh>
        <mesh>Polymorphism, Single Nucleotide</mesh>
        <mesh>Proteins</mesh>
        <mesh>Proteome</mesh>
        <mesh>Proteomics</mesh>
        <mesh>RNA, Messenger</mesh>
        <mesh>Sequence Alignment</mesh>
        <mesh>Software</mesh>
        <mesh>Zebrafish</mesh>
      </mesh_list>
      <url>http://genome.ucsc.edu/</url>
      <pages>
        <google>
          http://www.google.com/search?hl=en&amp;q=link%3ahttp%3A%2F%2Fgenome.ucsc.edu%2F&amp;btnG=Google+Search
        </google>
        <altavista>
          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>
      <papers>
        <bio_med_central>
          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
        </bio_med_central>
        <scirus>
          http://www.scirus.com/srsapp/search?q=genome.ucsc.edu%2F&amp;ds=jnl&amp;g=s&amp;t=all
        </scirus>
        <high_wire_press>
          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
        </high_wire_press>
        <google_scholar>
          http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=genome.ucsc.edu%2F&amp;btnG=Search
        </google_scholar>
      </papers>
      <pubmed>
        <pmid>16888352</pmid>
        <pmid>16381938</pmid>
        <pmid>12045153</pmid>
        <pmid>15216554</pmid>
        <pmid>17151077</pmid>
        <pmid>16888348</pmid>
        <pmid>16372332</pmid>
        <pmid>11932250</pmid>
        <pmid>16722777</pmid>
        <pmid>12519945</pmid>
        <pmid>16500937</pmid>
        <pmid>17142222</pmid>
        <pmid>15554057</pmid>
        <pmid>15608236</pmid>
        <pmid>16888346</pmid>
      </pubmed>
    </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_list>
        <mesh>Chromosome Mapping</mesh>
        <mesh>Databases, Genetic</mesh>
        <mesh>Gene Expression Profiling</mesh>
        <mesh>Genome</mesh>
        <mesh>Oligonucleotide Array Sequence Analysis</mesh>
        <mesh>Sequence Alignment</mesh>
        <mesh>Sequence Analysis, DNA</mesh>
        <mesh>Software</mesh>
        <mesh>User-Computer Interface</mesh>
      </mesh_list>
      <url>http://www.genome.ucsc.edu/</url>
      <pages>
        <google>
          http://www.google.com/search?hl=en&amp;q=link%3ahttp%3A%2F%2Fwww.genome.ucsc.edu%2F&amp;btnG=Google+Search
        </google>
        <altavista>
          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>
      <papers>
        <bio_med_central>
          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
        </bio_med_central>
        <scirus>
          http://www.scirus.com/srsapp/search?q=www.genome.ucsc.edu%2F&amp;ds=jnl&amp;g=s&amp;t=all
        </scirus>
        <high_wire_press>
          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
        </high_wire_press>
        <google_scholar>
          http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=www.genome.ucsc.edu%2F&amp;btnG=Search
        </google_scholar>
      </papers>
      <pubmed>
        <pmid>14681485</pmid>
        <pmid>16108715</pmid>
      </pubmed>
    </result>
    <result>
      <rank>3</rank>
      <title>UCSC Genome Browser Home</title>
      <snippet>
        IsoFinder : computational prediction of isochores in <strong>genome</strong> sequences . Isochores are long <strong>genome</strong> segments homogeneous in G+C . Here , we describe an algorithm ( IsoFinder ) running on the web...by each cut . This leads to the decomposition of a chromosome sequence into long homogeneous <strong>genome</strong> regions ( LHGRs ) with well-defined mean G+C contents , each significantly different from the G...
      </snippet>
      <mesh_list>
        <mesh>Computational Biology</mesh>
        <mesh>Genomics</mesh>
        <mesh>Isochores</mesh>
        <mesh>Software</mesh>
      </mesh_list>
      <url>http://genome.cse.ucsc.edu/</url>
      <pages>
        <google>
          http://www.google.com/search?hl=en&amp;q=link%3ahttp%3A%2F%2Fgenome.cse.ucsc.edu%2F&amp;btnG=Google+Search
        </google>
        <altavista>
          http://www.altavista.com/web/results?itag=ody&amp;q=link:http%3A%2F%2Fgenome.cse.ucsc.edu%2F&amp;kgs=0&amp;kls=1
        </altavista>
      </pages>
      <papers>
        <bio_med_central>
          http://www.biomedcentral.com/search/results.asp?txtSearch1=genome.cse.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
        </bio_med_central>
        <scirus>
          http://www.scirus.com/srsapp/search?q=genome.cse.ucsc.edu%2F&amp;ds=jnl&amp;g=s&amp;t=all
        </scirus>
        <high_wire_press>
          http://highwire.org/cgi/searchresults?fulltext=genome.cse.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
        </high_wire_press>
        <google_scholar>
          http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=genome.cse.ucsc.edu%2F&amp;btnG=Search
        </google_scholar>
      </papers>
      <pubmed>
        <pmid>15215396</pmid>
      </pubmed>
    </result>
  </results>
</result_set>
}}}"	仕様	new	各マイルストーンで解決する	Iterate5(1/10)	OReFiL					0		YYYY/MM/DD	YYYY/MM/DD
