14 <& /page/page_title.mas, title => 'Quick search for '.encode_entities( '"'.$quick_search_term.'"' ) &>
16 <div class="page_introduction">
17 Note: The quick search does not perform exactly the same queries as
18 full searches for the various data types. If your desired result
19 does not appear, you may want to try again with one of the advanced
20 search tools in the "search" menu.
23 <&| /page/info_section.mas, title => 'Exact matches' &>
28 <div>Site xref search time: <% sprintf('%0.1f sec', $xrefs_time) %></div>
31 <& /sitefeatures/mixed/xref_set/link.mas, xrefs => $xrefs &>
32 <hr style="border: 0; border-bottom: 1px solid #aaa; width: 90%; margin: 1.5em auto 1.2em auto" />
37 <dt>Identifiers - Breeding Data</dt>
39 <div style="float: left; width: 50%">
40 <% $search{accessions} %>
41 <% $search{populations} %>
42 <% $search{vectors} %>
45 <div style="float: right; width: 50%">
47 <% $search{locations} %>
48 <% $search{breeding_programs} %>
50 <div style="clear: both;"> </div>
52 <dt>Identifiers - Genomic Data</dt>
54 <div style="float: left; width: 50%">
59 <div style="float: right; width: 50%;">
60 <% $search{unigene} %>
61 <% $search{microarray} %>
65 <span style="margin-bottom:20px;"> </span>
71 <&| /page/info_section.mas,
72 title => 'Fuzzy searches',
73 subtitle => 'click to view search results',
81 <div style="float: left; width: 50%">Identifiers</div>
82 <div style="float: right; width: 50%">cDNA Libraries</div>
85 <div style="float: left; width: 50%">
87 <% $search{phenotype} %>
89 <div style="float: right; width: 50%">
90 <% $search{locus_allele} %>
91 <% $search{library} %>
93 <div style="clear: both; margin-bottom: -1.7em"> </div>
98 <hr style="border: 0; border-bottom: 1px solid #aaa; width: 90%; margin: 1.5em auto 1.2em auto" />
103 <div style="float: left; width: 50%">People (searching by name)</div>
104 <div style="float: right; width: 50%">Annotations</div>
107 <div style="float: left; width: 50%">
108 <% $search{people} %>
110 <div style="float: right; width: 50%">
111 <% $search{manual_annotations} %>
112 <% $search{automatic_annotations} %>
114 <div style="clear: both; margin-bottom: -1.7em"> </div>
119 <hr style="border: 0; border-bottom: 1px solid #aaa; width: 90%; margin: 1.5em auto 1.2em auto" />
124 <div style="float: left; width: 50%">Images</div>
125 <div style="float: right; width: 50%">Web Pages</div>
128 <div style="float: left; width: 50%">
131 <div style="float: right; width: 50%">
132 <% $search{sgn_pages} %>
133 <% $search{external_link} %>
136 <div style="clear: both; margin-bottom: -1.7em"> </div>
149 my %search = %$results;
150 for my $search ( values %search ) {
151 my ( $url, $desc ) = @{$search->{result}};
152 my $time = $show_times ? sprintf(' (%0.1f sec)', $search->{time}) : '';
153 my $html = $url ? qq|<div><a class="quicksearch_hit" href="$search->{result}[0]">$search->{result}[1]$time</a></div>|
154 : qq|<div class="ghosted">$desc$time</div>|;