14 <& /page/page_title.mas, title => 'Quick search for '.encode_entities( '"'.$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' &>
26 <div>Site xref search time: <% sprintf('%0.1f sec', $xrefs_time) %></div>
29 <& /sitefeatures/mixed/xref_set/link.mas, xrefs => $xrefs &>
31 <hr style="border: 0; border-bottom: 1px solid #aaa; width: 90%; margin: 1.5em auto 1.2em auto" />
38 <div style="float: left; width: 50%">
42 <div style="float: right; width: 50%">
43 <% $search{unigene} %>
44 <% $search{microarray} %>
46 <div style="clear: both; margin-bottom: -1.7em"> </div>
53 <&| /page/info_section.mas,
54 title => 'Fuzzy searches',
55 subtitle => 'click to view search results',
57 <div style="float: left; width: 50%">
63 <% $search{phenotype} %>
64 <% $search{locus_allele} %>
66 <dt>People (searching by name)</dt>
67 <dd><% $search{people} %></dd>
74 <div style="float: right; width: 50%">
76 <dt>cDNA libraries</dt>
77 <dd><% $search{library} %></dd>
80 <% $search{manual_annotations} %>
81 <% $search{automatic_annotations} %>
85 <% $search{sgn_pages} %>
86 <% $search{external_link} %>
97 my %search = %$results;
98 for my $search ( values %search ) {
99 my ( $url, $desc ) = @{$search->{result}};
100 my $time = $show_times ? sprintf(' (%0.1f sec)', $search->{time}) : '';
101 my $html = $url ? qq|<div><a class="quicksearch_hit" href="$search->{result}[0]">$search->{result}[1]$time</a></div>|
102 : qq|<div class="ghosted">$desc$time</div>|;