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 &>
33 <hr style="border: 0; border-bottom: 1px solid #aaa; width: 90%; margin: 1.5em auto 1.2em auto" />
40 <div style="float: left; width: 50%">
44 <div style="float: right; width: 50%">
45 <% $search{unigene} %>
46 <% $search{microarray} %>
48 <div style="clear: both; margin-bottom: -1.7em"> </div>
57 <&| /page/info_section.mas,
58 title => 'Fuzzy searches',
59 subtitle => 'click to view search results',
67 <div style="float: left; width: 50%">Identifiers</div>
68 <div style="float: right; width: 50%">cDNA Libraries</div>
71 <div style="float: left; width: 50%">
74 <% $search{phenotype} %>
75 <% $search{locus_allele} %>
77 <div style="float: right; width: 50%">
78 <% $search{library} %>
80 <div style="clear: both; margin-bottom: -1.7em"> </div>
85 <hr style="border: 0; border-bottom: 1px solid #aaa; width: 90%; margin: 1.5em auto 1.2em auto" />
90 <div style="float: left; width: 50%">People (searching by name)</div>
91 <div style="float: right; width: 50%">Annotations</div>
94 <div style="float: left; width: 50%">
97 <div style="float: right; width: 50%">
98 <% $search{manual_annotations} %>
99 <% $search{automatic_annotations} %>
101 <div style="clear: both; margin-bottom: -1.7em"> </div>
106 <hr style="border: 0; border-bottom: 1px solid #aaa; width: 90%; margin: 1.5em auto 1.2em auto" />
111 <div style="float: left; width: 50%">Images</div>
112 <div style="float: right; width: 50%">Web Pages</div>
115 <div style="float: left; width: 50%">
118 <div style="float: right; width: 50%">
119 <% $search{sgn_pages} %>
120 <% $search{external_link} %>
123 <div style="clear: both; margin-bottom: -1.7em"> </div>
136 my %search = %$results;
137 for my $search ( values %search ) {
138 my ( $url, $desc ) = @{$search->{result}};
139 my $time = $show_times ? sprintf(' (%0.1f sec)', $search->{time}) : '';
140 my $html = $url ? qq|<div><a class="quicksearch_hit" href="$search->{result}[0]">$search->{result}[1]$time</a></div>|
141 : qq|<div class="ghosted">$desc$time</div>|;